summaryrefslogtreecommitdiff
path: root/Lib/compileall.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-02-07 12:36:54 +0000
committerGeorg Brandl <georg@python.org>2011-02-07 12:36:54 +0000
commit4543846517cbb5defb00f1bae82edd30e1280d9e (patch)
tree0dc95793008454a07c4f80034fb03db70d8f3396 /Lib/compileall.py
parentca583b66c8debea9b083470f9fc3b8ab0589082b (diff)
downloadcpython-git-4543846517cbb5defb00f1bae82edd30e1280d9e.tar.gz
#11132: pass optimize parameter to recursive call in compileall.compile_dir(). Reviewed by Eric A.
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r--Lib/compileall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index 1030d8c8f0..d79a1bb9a0 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -58,7 +58,7 @@ def compile_dir(dir, maxlevels=10, ddir=None, force=False, rx=None,
elif (maxlevels > 0 and name != os.curdir and name != os.pardir and
os.path.isdir(fullname) and not os.path.islink(fullname)):
if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
- quiet, legacy):
+ quiet, legacy, optimize):
success = 0
return success