summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-02-07 12:36:54 (GMT)
committerGeorg Brandl <georg@python.org>2011-02-07 12:36:54 (GMT)
commit4543846517cbb5defb00f1bae82edd30e1280d9e (patch)
tree0dc95793008454a07c4f80034fb03db70d8f3396 /Misc
parentca583b66c8debea9b083470f9fc3b8ab0589082b (diff)
downloadcpython-4543846517cbb5defb00f1bae82edd30e1280d9e.zip
cpython-4543846517cbb5defb00f1bae82edd30e1280d9e.tar.gz
cpython-4543846517cbb5defb00f1bae82edd30e1280d9e.tar.bz2
#11132: pass optimize parameter to recursive call in compileall.compile_dir(). Reviewed by Eric A.
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 8e12007..c22e360 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -843,6 +843,7 @@ James Thomas
Robin Thomas
Jeremy Thurgood
Eric Tiedemann
+July Tikhonov
Tracy Tims
Oren Tirosh
Jason Tishler
diff --git a/Misc/NEWS b/Misc/NEWS
index 7dbbcbb..80c08c2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #11132: Fix passing of "optimize" parameter when recursing
+ in compileall.compile_dir().
+
- Issue #11110: Fix a potential decref of a NULL in sqlite3.
- Issue #8275: Fix passing of callback arguments with ctypes under Win64.