summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-16 01:49:38 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-16 01:49:38 (GMT)
commit8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb (patch)
tree7267be36dc61e06bd0817d559e0a753b3f25c58e /Misc
parent1f1ec12db9eefa36bc7a2227c40ecdfcac945439 (diff)
downloadcpython-8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb.zip
cpython-8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb.tar.gz
cpython-8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb.tar.bz2
#19532: make compileall with no file/dir args respect -f and -q.
Patch by Vajrasky Kok.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 60e741f..73625f3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #19532: python -m compileall with no filename/directory arguments now
+ respects the -f and -q flags instead of ignoring them.
+
- Issue #19623: Fixed writing to unseekable files in the aifc module.
- Issue #17919: select.poll.register() again works with poll.POLLNVAL on AIX.