mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Fix distutils byte-compilation to comply with PEP 3147 (#11254).
Patch by Jeff Ramnani. Tested with -B, -O and -OO.
This commit is contained in:
parent
db95c7a60c
commit
47a4521ece
6 changed files with 34 additions and 12 deletions
|
|
@ -1204,9 +1204,9 @@ other utility module.
|
||||||
.. function:: byte_compile(py_files[, optimize=0, force=0, prefix=None, base_dir=None, verbose=1, dry_run=0, direct=None])
|
.. function:: byte_compile(py_files[, optimize=0, force=0, prefix=None, base_dir=None, verbose=1, dry_run=0, direct=None])
|
||||||
|
|
||||||
Byte-compile a collection of Python source files to either :file:`.pyc` or
|
Byte-compile a collection of Python source files to either :file:`.pyc` or
|
||||||
:file:`.pyo` files in the same directory. *py_files* is a list of files to
|
:file:`.pyo` files in a :file:`__pycache__` subdirectory (see :pep:`3147`).
|
||||||
compile; any files that don't end in :file:`.py` are silently skipped.
|
*py_files* is a list of files to compile; any files that don't end in
|
||||||
*optimize* must be one of the following:
|
:file:`.py` are silently skipped. *optimize* must be one of the following:
|
||||||
|
|
||||||
* ``0`` - don't optimize (generate :file:`.pyc`)
|
* ``0`` - don't optimize (generate :file:`.pyc`)
|
||||||
* ``1`` - normal optimization (like ``python -O``)
|
* ``1`` - normal optimization (like ``python -O``)
|
||||||
|
|
@ -1231,6 +1231,11 @@ other utility module.
|
||||||
is used by the script generated in indirect mode; unless you know what you're
|
is used by the script generated in indirect mode; unless you know what you're
|
||||||
doing, leave it set to ``None``.
|
doing, leave it set to ``None``.
|
||||||
|
|
||||||
|
.. versionchanged:: 3.2.3
|
||||||
|
Create ``.pyc`` or ``.pyo`` files with an :func:`import magic tag
|
||||||
|
<imp.get_tag>` in their name, in a :file:`__pycache__` subdirectory
|
||||||
|
instead of files without tag in the current directory.
|
||||||
|
|
||||||
|
|
||||||
.. function:: rfc822_escape(header)
|
.. function:: rfc822_escape(header)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import io
|
import io
|
||||||
|
import imp
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from distutils.command.build_py import build_py
|
from distutils.command.build_py import build_py
|
||||||
|
|
@ -57,13 +58,15 @@ class BuildPyTestCase(support.TempdirManager,
|
||||||
self.assertEqual(len(cmd.get_outputs()), 3)
|
self.assertEqual(len(cmd.get_outputs()), 3)
|
||||||
pkgdest = os.path.join(destination, "pkg")
|
pkgdest = os.path.join(destination, "pkg")
|
||||||
files = os.listdir(pkgdest)
|
files = os.listdir(pkgdest)
|
||||||
|
pycache_dir = os.path.join(pkgdest, "__pycache__")
|
||||||
self.assertIn("__init__.py", files)
|
self.assertIn("__init__.py", files)
|
||||||
self.assertIn("README.txt", files)
|
self.assertIn("README.txt", files)
|
||||||
# XXX even with -O, distutils writes pyc, not pyo; bug?
|
|
||||||
if sys.dont_write_bytecode:
|
if sys.dont_write_bytecode:
|
||||||
self.assertNotIn("__init__.pyc", files)
|
self.assertFalse(os.path.exists(pycache_dir))
|
||||||
else:
|
else:
|
||||||
self.assertIn("__init__.pyc", files)
|
# XXX even with -O, distutils writes pyc, not pyo; bug?
|
||||||
|
pyc_files = os.listdir(pycache_dir)
|
||||||
|
self.assertIn("__init__.%s.pyc" % imp.get_tag(), pyc_files)
|
||||||
|
|
||||||
def test_empty_package_dir(self):
|
def test_empty_package_dir(self):
|
||||||
# See SF 1668596/1720897.
|
# See SF 1668596/1720897.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
"""Tests for distutils.command.install_data."""
|
"""Tests for distutils.command.install_data."""
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
import imp
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from distutils.command.install_lib import install_lib
|
from distutils.command.install_lib import install_lib
|
||||||
|
|
@ -32,18 +33,20 @@ class InstallLibTestCase(support.TempdirManager,
|
||||||
cmd.finalize_options()
|
cmd.finalize_options()
|
||||||
self.assertEqual(cmd.optimize, 2)
|
self.assertEqual(cmd.optimize, 2)
|
||||||
|
|
||||||
@unittest.skipUnless(not sys.dont_write_bytecode,
|
@unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled')
|
||||||
'byte-compile not supported')
|
|
||||||
def test_byte_compile(self):
|
def test_byte_compile(self):
|
||||||
pkg_dir, dist = self.create_dist()
|
pkg_dir, dist = self.create_dist()
|
||||||
|
os.chdir(pkg_dir)
|
||||||
cmd = install_lib(dist)
|
cmd = install_lib(dist)
|
||||||
cmd.compile = cmd.optimize = 1
|
cmd.compile = cmd.optimize = 1
|
||||||
|
|
||||||
f = os.path.join(pkg_dir, 'foo.py')
|
f = os.path.join(pkg_dir, 'foo.py')
|
||||||
self.write_file(f, '# python file')
|
self.write_file(f, '# python file')
|
||||||
cmd.byte_compile([f])
|
cmd.byte_compile([f])
|
||||||
self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyc')))
|
pyc_file = imp.cache_from_source('foo.py')
|
||||||
self.assertTrue(os.path.exists(os.path.join(pkg_dir, 'foo.pyo')))
|
pyo_file = imp.cache_from_source('foo.py', debug_override=False)
|
||||||
|
self.assertTrue(os.path.exists(pyc_file))
|
||||||
|
self.assertTrue(os.path.exists(pyo_file))
|
||||||
|
|
||||||
def test_get_outputs(self):
|
def test_get_outputs(self):
|
||||||
pkg_dir, dist = self.create_dist()
|
pkg_dir, dist = self.create_dist()
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,11 @@ Miscellaneous utility functions -- anything that doesn't fit into
|
||||||
one of the other *util.py modules.
|
one of the other *util.py modules.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import sys, os, string, re
|
import os
|
||||||
|
import re
|
||||||
|
import imp
|
||||||
|
import sys
|
||||||
|
import string
|
||||||
from distutils.errors import DistutilsPlatformError
|
from distutils.errors import DistutilsPlatformError
|
||||||
from distutils.dep_util import newer
|
from distutils.dep_util import newer
|
||||||
from distutils.spawn import spawn
|
from distutils.spawn import spawn
|
||||||
|
|
@ -529,7 +533,10 @@ byte_compile(files, optimize=%r, force=%r,
|
||||||
# Terminology from the py_compile module:
|
# Terminology from the py_compile module:
|
||||||
# cfile - byte-compiled file
|
# cfile - byte-compiled file
|
||||||
# dfile - purported source filename (same as 'file' by default)
|
# 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
|
dfile = file
|
||||||
if prefix:
|
if prefix:
|
||||||
if file[:len(prefix)] != prefix:
|
if file[:len(prefix)] != prefix:
|
||||||
|
|
|
||||||
|
|
@ -722,6 +722,7 @@ Pierre Quentel
|
||||||
Brian Quinlan
|
Brian Quinlan
|
||||||
Anders Qvist
|
Anders Qvist
|
||||||
Burton Radons
|
Burton Radons
|
||||||
|
Jeff Ramnani
|
||||||
Brodie Rao
|
Brodie Rao
|
||||||
Antti Rasinen
|
Antti Rasinen
|
||||||
Sridhar Ratnakumar
|
Sridhar Ratnakumar
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #11254: Teach distutils to compile .pyc and .pyo files in
|
||||||
|
PEP 3147-compliant __pycache__ directories.
|
||||||
|
|
||||||
- Issue #7367: Fix pkgutil.walk_paths to skip directories whose
|
- Issue #7367: Fix pkgutil.walk_paths to skip directories whose
|
||||||
contents cannot be read.
|
contents cannot be read.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue