diff options
author | Éric Araujo <merwok@netwok.org> | 2011-10-08 02:09:15 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-10-08 02:09:15 (GMT) |
commit | a29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c (patch) | |
tree | f162133d4375ac1c80313861d6e409c186a849ee /Lib/packaging/util.py | |
parent | 73b1e7dd2098279910e89454d5ba92d5b46370da (diff) | |
download | cpython-a29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c.zip cpython-a29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c.tar.gz cpython-a29e4f64c1dfeb4ca1cf9f4c9636cb4528b2fd8c.tar.bz2 |
Fix packaging byte-compilation to comply with PEP 3147 (#11254).
I want to replace custom byte-compiling function with calls to
compileall before 3.3b1, but in the short term it’s good to have this
fixed.
Adapted from the distutils patch by Jeff Ramnani. I tested with -B, -O
and -OO; test_util and test_mixin2to3 fail in -O mode because lib2to3
doesn’t support it.
Diffstat (limited to 'Lib/packaging/util.py')
-rw-r--r-- | Lib/packaging/util.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/packaging/util.py b/Lib/packaging/util.py index 89f5389..f8a8058 100644 --- a/Lib/packaging/util.py +++ b/Lib/packaging/util.py @@ -3,6 +3,7 @@ import os import re import csv +import imp import sys import errno import shutil @@ -296,7 +297,7 @@ def strtobool(val): def byte_compile(py_files, optimize=0, force=False, prefix=None, base_dir=None, verbose=0, dry_run=False, direct=None): """Byte-compile a collection of Python source files to either .pyc - or .pyo files in the same directory. + or .pyo files in a __pycache__ subdirectory. 'py_files' is a list of files to compile; any files that don't end in ".py" are silently skipped. 'optimize' must be one of the following: @@ -415,7 +416,10 @@ byte_compile(files, optimize=%r, force=%r, # Terminology from the py_compile module: # cfile - byte-compiled file # dfile - purported source filename (same as 'file' by default) - cfile = file + (__debug__ and "c" or "o") + if optimize >= 0: + cfile = imp.cache_from_source(file, debug_override=not optimize) + else: + cfile = imp.cache_from_source(file) dfile = file if prefix: if file[:len(prefix)] != prefix: |