Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(700)

Issue 12450015: **/*.py: use /usr/bin/env to find python

Created:
7 years, 9 months ago by Ramkumar Ramachandra
Modified:
7 years, 9 months ago
CC:
native-client-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/native_client/src/native_client@master
Visibility:
Public.

Description

**/*.py: use /usr/bin/env to find python Don't hardcode /usr/bin/python, as many users may have it pointing to python3. It is simpler to ask users to make sure that `/usr/bin/env python` picks up the right version of python. Also fix trivial whitespace errors caught by presumbit script. BUG=none TEST=all tests pass

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+180 lines, -180 lines) Patch
M build/build_nexe.py View 1 chunk +1 line, -1 line 0 comments Download
M build/copy_sources.py View 1 chunk +1 line, -1 line 0 comments Download
M build/cygtar.py View 1 chunk +1 line, -1 line 0 comments Download
M build/directory_storage.py View 1 chunk +1 line, -1 line 0 comments Download
M build/directory_storage_test.py View 1 chunk +1 line, -1 line 0 comments Download
M build/download_toolchains.py View 1 chunk +1 line, -1 line 0 comments Download
M build/download_utils.py View 1 chunk +1 line, -1 line 0 comments Download
M build/fake_storage.py View 1 chunk +1 line, -1 line 0 comments Download
M build/file_tools.py View 1 chunk +1 line, -1 line 0 comments Download
M build/filter_windows_lcov.py View 1 chunk +1 line, -1 line 0 comments Download
M build/find_toolchain_revisions.py View 1 chunk +1 line, -1 line 0 comments Download
M build/gsd_storage.py View 1 chunk +1 line, -1 line 0 comments Download
M build/gsd_storage_test.py View 1 chunk +1 line, -1 line 0 comments Download
M build/hashing_tools.py View 1 chunk +1 line, -1 line 0 comments Download
M build/hashing_tools_test.py View 1 chunk +1 line, -1 line 0 comments Download
M build/http_download.py View 1 chunk +1 line, -1 line 0 comments Download
M build/local_storage_cache.py View 1 chunk +1 line, -1 line 0 comments Download
M build/local_storage_cache_test.py View 1 chunk +1 line, -1 line 0 comments Download
M build/log_tools.py View 1 chunk +1 line, -1 line 0 comments Download
M build/prep_nacl_sdk.py View 1 chunk +1 line, -1 line 0 comments Download
M build/run_build_tests.py View 1 chunk +1 line, -1 line 0 comments Download
M build/scan_sources.py View 1 chunk +1 line, -1 line 0 comments Download
M build/stable_hash.py View 1 chunk +1 line, -1 line 0 comments Download
M build/test_build.py View 1 chunk +1 line, -1 line 0 comments Download
M build/toolchainbinaries.py View 1 chunk +1 line, -1 line 0 comments Download
M build/untar_toolchain.py View 1 chunk +1 line, -1 line 0 comments Download
M build/working_directory.py View 1 chunk +1 line, -1 line 0 comments Download
M buildbot/buildbot_lib.py View 1 chunk +1 line, -1 line 0 comments Download
M buildbot/buildbot_selector.py View 1 chunk +1 line, -1 line 0 comments Download
M buildbot/buildbot_standard.py View 1 chunk +1 line, -1 line 0 comments Download
M buildbot/buildbot_toolchain_build.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/artools.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/driver_env.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/driver_log.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/driver_tools.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/ldtools.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pathtools.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-ar.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-as.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-clang.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-clang++.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-dis.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-driver.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-illegal.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-ld.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-meta.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-meta-unpack.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-nativeld.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-nm.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-nmf.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-nop.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-opt.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-ranlib.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-readelf.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-strip.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/pnacl-translate.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/shelltools.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/tests/driver_test_utils.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/tests/driver_tests.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/tests/expand_response_file_test.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/tests/help_message_test.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/tests/strip_test.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/tests/translate_options_test.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/driver/wrapper-link-and-translate.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/prune_test.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/scripts/parse_llvm_test_report.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/tc_component_packager.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/unsupported/driver/pnacl-pexecheck.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/unsupported/interface_checker.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/unsupported/llvmtestfilter.py View 1 chunk +1 line, -1 line 0 comments Download
M pnacl/unsupported/objdump-arm-canonicalizer.py View 1 chunk +1 line, -1 line 0 comments Download
M run.py View 1 chunk +1 line, -1 line 0 comments Download
M scons.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/gyp_extract.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_init.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/code_coverage.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/command_output.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/component_bits.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/component_builders.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/component_setup.py View 1 chunk +1 line, -1 line 0 comments Download
site_scons/site_tools/component_targets.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/defer.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/environment_tools.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/naclsdk.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/publish.py View 2 chunks +3 lines, -3 lines 0 comments Download
M site_scons/site_tools/replicate.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/target_debug.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/target_optimized.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/target_platform_linux.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/target_platform_mac.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/target_platform_windows.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/site_tools/windows_hard_link.py View 1 chunk +1 line, -1 line 0 comments Download
M site_scons/usage_log.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/service_runtime/export_header.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/service_runtime/linux/ld_bfd.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/service_runtime/nacl_syscall_handlers_gen.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/service_runtime/osx/run_mig.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator/driver/ncval_annotate.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_actuals.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_add_patterns.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_baselines.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_core.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_decoder.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_decoder_output.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_input.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_opt.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_output.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/dgen_test_output.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/generate_decoder.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_arm/validation-report.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/dgen/dgen_core.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/dgen/dgen_dump.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/dgen/dgen_input.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/dgen/dgen_opt.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/dgen/dgen_output.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/dgen/generate_decoder.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/dgen/optimize-table.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_mips/validation-report.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/byte_machines.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/check_decoder.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/dfa_parser.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/gen_dfa.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/gen_dfa_test.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/obtain_binutils.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/unreviewed/compare_dfa.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_ragel/verify_superinstructions.py View 2 chunks +3 lines, -3 lines 0 comments Download
M src/trusted/validator_ragel/verify_validators_dfa.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_x86/discmp.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_x86/enum_gen.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_x86/testscripts/compare_validators.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_x86/testscripts/run_old_validator_tests.py View 1 chunk +1 line, -1 line 0 comments Download
M src/trusted/validator_x86/testscripts/run_rdfa_validator_tests.py View 1 chunk +1 line, -1 line 0 comments Download
M src/untrusted/crash_dump/decode_dump.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/abi_corpus/corpus_errors.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/abi_corpus/corpus_utils.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/abi_corpus/startup_regression_test.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/abi_corpus/validator_regression_test.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/callingconv/generate.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/createthreads/createthreads.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/python_version/python_version.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/spec2k/extract_timings.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/time/time_check.py View 1 chunk +1 line, -1 line 0 comments Download
M tests/untrusted_crash_dump/untrusted_crash_dump_test.py View 1 chunk +1 line, -1 line 0 comments Download
M toolchain_build/command.py View 1 chunk +1 line, -1 line 0 comments Download
M toolchain_build/once.py View 1 chunk +1 line, -1 line 0 comments Download
M toolchain_build/once_test.py View 1 chunk +1 line, -1 line 0 comments Download
M toolchain_build/toolchain_build.py View 1 chunk +1 line, -1 line 0 comments Download
M toolchain_build/toolchain_env.py View 1 chunk +1 line, -1 line 0 comments Download
toolchain_build/toolchain_main.py View 1 chunk +1 line, -1 line 0 comments Download
M toolchain_build/toolchain_tests.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/bot-mon.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/code_hygiene.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/command_tester.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/coverage_helper.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/coverage_linux.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/diff.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/elf.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/elf_checker.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/elf_fuzzer.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/file_cmp_test.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/generate_bad_nexes.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/generate_bad_x86_64_nexes.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/httpd.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/process_oprofile_x86_64.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/process_perf_combined.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/process_perf_output.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/run_test_via_ssh.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/run_test_via_ssh_test.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/synthesize_code.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/syscall_stats.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/sysinfo.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/test_lib.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/test_timing.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/time_check.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/toolchain_tester/toolchain_tester.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/win_as.py View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 3 (0 generated)
Ramkumar Ramachandra
Hi, Could you please review this simple change? I use Arch Linux, and the /usr/bin/python ...
7 years, 9 months ago (2013-03-14 09:33:32 UTC) #1
khim
Hmm... This change is explicitly forbidden by a style guide: http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Shebang_Line This automatically moves this ...
7 years, 9 months ago (2013-03-14 10:36:52 UTC) #2
artagnon_gmail.com
7 years, 9 months ago (2013-03-14 17:29:10 UTC) #3
<khim@chromium.org> wrote:
> Hmm... This change is explicitly forbidden by a style guide:
> http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Shebang_Line

Are you sure you're not taking the style guide too literally?  It's
simply stating that you need a line to tell the kernel where to find
the Python interpreter.  I submitted a similar change to the
pnaclports project, and have already got a LGTM on it [1].

[1]: https://codereview.chromium.org/12412021/

-- 
You received this message because you are subscribed to the Google Groups
"Native-Client-Reviews" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to native-client-reviews+unsubscribe@googlegroups.com.
To post to this group, send email to native-client-reviews@googlegroups.com.
Visit this group at http://groups.google.com/group/native-client-reviews?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Powered by Google App Engine
This is Rietveld 408576698