summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-08 12:37:51 (GMT)
committerGitHub <noreply@github.com>2017-03-08 12:37:51 (GMT)
commit8606e9524a7a4065042f7f228dc57eb74f88e4d3 (patch)
tree84f0e487deb92a304f8a584e59217d3b25351f98 /Misc
parentc351ce6a2c923c5016e48ecbf7b1e4833031d154 (diff)
downloadcpython-8606e9524a7a4065042f7f228dc57eb74f88e4d3.zip
cpython-8606e9524a7a4065042f7f228dc57eb74f88e4d3.tar.gz
cpython-8606e9524a7a4065042f7f228dc57eb74f88e4d3.tar.bz2
bpo-28231: The zipfile module now accepts path-like objects for external paths. (#511)
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 a8c8ec7..503ed83 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -270,6 +270,9 @@ Extension Modules
Library
-------
+- bpo-28231: The zipfile module now accepts path-like objects for external
+ paths.
+
- bpo-26915: index() and count() methods of collections.abc.Sequence now
check identity before checking equality when do comparisons.