summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-25 11:05:23 (GMT)
committerGitHub <noreply@github.com>2017-03-25 11:05:23 (GMT)
commit4aec9a8be2f2574f249008eb8be76c070fea37eb (patch)
tree109e24fae63d38d6e566c791d73df2c3609d4d4d /Misc
parent3c749fc867f69deac75f866d5c1ba0f60e54c1fa (diff)
downloadcpython-4aec9a8be2f2574f249008eb8be76c070fea37eb.zip
cpython-4aec9a8be2f2574f249008eb8be76c070fea37eb.tar.gz
cpython-4aec9a8be2f2574f249008eb8be76c070fea37eb.tar.bz2
bpo-29901: Improve support of path-like objects in zipapp. (#815)
Now general path-like objects are supported, not just pathlib.Path.
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 a5653c8..8360abb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -291,6 +291,9 @@ Extension Modules
Library
-------
+- bpo-29901: The zipapp module now supports general path-like objects, not
+ just pathlib.Path.
+
- bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True)
when the OS gives priority to errors such as EACCES over EEXIST.