summaryrefslogtreecommitdiff
path: root/Lib/compileall.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-15 20:56:00 -0500
committerR David Murray <rdmurray@bitdance.com>2013-12-15 20:56:00 -0500
commit755d5ea12aff91dfc4c4fe7302d911da33fffa82 (patch)
tree252bfeec4ddcb0b282c40664cffaf092b38d8733 /Lib/compileall.py
parent575596e19a8f0be382f08a2dc9190100ff811b97 (diff)
parent8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb (diff)
downloadcpython-git-755d5ea12aff91dfc4c4fe7302d911da33fffa82.tar.gz
Merge: #19532: make compileall with no file/dir args respect -f and -q.
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r--Lib/compileall.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py
index 475dc1c8a0..07f50aa3a3 100644
--- a/Lib/compileall.py
+++ b/Lib/compileall.py
@@ -229,7 +229,8 @@ def main():
success = False
return success
else:
- return compile_path(legacy=args.legacy)
+ return compile_path(legacy=args.legacy, force=args.force,
+ quiet=args.quiet)
except KeyboardInterrupt:
print("\n[interrupted]")
return False