summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-07 22:34:13 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-07 22:34:13 (GMT)
commit47a4521ecec0cdf9976717bd565c37bee3f566ab (patch)
tree689ca5f85bd7b9f26445f4df202106170fb4b64c /Misc
parentdb95c7a60c5ec404523bb7bbc13dd96bf87d15b8 (diff)
downloadcpython-47a4521ecec0cdf9976717bd565c37bee3f566ab.zip
cpython-47a4521ecec0cdf9976717bd565c37bee3f566ab.tar.gz
cpython-47a4521ecec0cdf9976717bd565c37bee3f566ab.tar.bz2
Fix distutils byte-compilation to comply with PEP 3147 (#11254).
Patch by Jeff Ramnani. Tested with -B, -O and -OO.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 3dc3de1..0fd2192 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -722,6 +722,7 @@ Pierre Quentel
Brian Quinlan
Anders Qvist
Burton Radons
+Jeff Ramnani
Brodie Rao
Antti Rasinen
Sridhar Ratnakumar
diff --git a/Misc/NEWS b/Misc/NEWS
index e9555b3..a55fcb3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
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
contents cannot be read.