summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.5.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-25 08:09:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-25 08:09:41 (GMT)
commit764fc9bfac84d564c526628974a9bd5edfa5bcab (patch)
tree84a9d8736869ad41ca0c5e17550fb14cb9afba34 /Doc/whatsnew/3.5.rst
parent489199765ff313d0a7dad70b8fbf416667c43862 (diff)
downloadcpython-764fc9bfac84d564c526628974a9bd5edfa5bcab.zip
cpython-764fc9bfac84d564c526628974a9bd5edfa5bcab.tar.gz
cpython-764fc9bfac84d564c526628974a9bd5edfa5bcab.tar.bz2
Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive
creation) mode.
Diffstat (limited to 'Doc/whatsnew/3.5.rst')
-rw-r--r--Doc/whatsnew/3.5.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index aa5af04..0996350 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -454,6 +454,9 @@ zipfile
* Added support for writing ZIP files to unseekable streams.
(Contributed by Serhiy Storchaka in :issue:`23252`.)
+* The :func:`zipfile.ZipFile.open` function now supports ``'x'`` (exclusive
+ creation) mode. (Contributed by Serhiy Storchaka in :issue:`21717`.)
+
Optimizations
=============