summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-25 19:43:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-25 19:43:05 (GMT)
commit95657cdd40dace0a8f62c50b3f0991b4ec9972fd (patch)
treebf466a0cc516e0292442c5db35c8e6c9fc92790a /Misc
parent696c35e86bffea1f2bc6179a29e46416899e3de6 (diff)
downloadcpython-95657cdd40dace0a8f62c50b3f0991b4ec9972fd.zip
cpython-95657cdd40dace0a8f62c50b3f0991b4ec9972fd.tar.gz
cpython-95657cdd40dace0a8f62c50b3f0991b4ec9972fd.tar.bz2
Issue #26243: Only the level argument to zlib.compress() is keyword argument
now. The first argument is positional-only.
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 5353712..58b774e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 alpha 3
Library
-------
+- Issue #26243: Only the level argument to zlib.compress() is keyword argument
+ now. The first argument is positional-only.
+
- Issue #27038: Expose the DirEntry type as os.DirEntry. Code patch by
Jelle Zijlstra.