Commit 874361ff by Ned Batchelder

Prevent writing bytecode, since we don't need it anyway.

parent 35e55e72
...@@ -43,7 +43,9 @@ def configure(command, bin_path, user=None): ...@@ -43,7 +43,9 @@ def configure(command, bin_path, user=None):
# Command-specific arguments # Command-specific arguments
if command == "python": if command == "python":
cmd_argv.append('-E') # -E means ignore the environment variables PYTHON*
# -B means don't try to write .pyc files.
cmd_argv.extend(['-E', '-B'])
COMMANDS[command] = cmd_argv COMMANDS[command] = cmd_argv
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment