summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-10-15 08:10:57 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2014-10-15 08:10:57 (GMT)
commit6554b86b1f3f007954a24b1444a26a1aa49e3d83 (patch)
tree48ff03187a81c9f633546ae705e5cdb66f172e8d /Misc
parent41d31967c6bcc7e730a0db77cfe1dc334c6d853e (diff)
downloadcpython-6554b86b1f3f007954a24b1444a26a1aa49e3d83.zip
cpython-6554b86b1f3f007954a24b1444a26a1aa49e3d83.tar.gz
cpython-6554b86b1f3f007954a24b1444a26a1aa49e3d83.tar.bz2
Issue #21338: Add silent mode for compileall.
quiet parameters of compile_{dir, file, path} functions now have a multilevel value. Also, -q option of the CLI now have a multilevel value. Patch by Thomas Kluyver.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e7f47f1..b5814b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -175,6 +175,10 @@ Core and Builtins
Library
-------
+- Issue #21338: Add silent mode for compileall. quiet parameters of
+ compile_{dir, file, path} functions now have a multilevel value. Also,
+ -q option of the CLI now have a multilevel value. Patch by Thomas Kluyver.
+
- Issue #20152: Convert the array and cmath modules to Argument Clinic.
- Issue #18643: Add socket.socketpair() on Windows.