diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-16 01:56:00 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-16 01:56:00 (GMT) |
commit | 755d5ea12aff91dfc4c4fe7302d911da33fffa82 (patch) | |
tree | 252bfeec4ddcb0b282c40664cffaf092b38d8733 /Lib/compileall.py | |
parent | 575596e19a8f0be382f08a2dc9190100ff811b97 (diff) | |
parent | 8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb (diff) | |
download | cpython-755d5ea12aff91dfc4c4fe7302d911da33fffa82.zip cpython-755d5ea12aff91dfc4c4fe7302d911da33fffa82.tar.gz cpython-755d5ea12aff91dfc4c4fe7302d911da33fffa82.tar.bz2 |
Merge: #19532: make compileall with no file/dir args respect -f and -q.
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r-- | Lib/compileall.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py index 475dc1c..07f50aa 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 |