diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-25 19:43:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-25 19:43:05 (GMT) |
commit | 95657cdd40dace0a8f62c50b3f0991b4ec9972fd (patch) | |
tree | bf466a0cc516e0292442c5db35c8e6c9fc92790a /Misc | |
parent | 696c35e86bffea1f2bc6179a29e46416899e3de6 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |