diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-25 11:05:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-25 11:05:23 (GMT) |
commit | 4aec9a8be2f2574f249008eb8be76c070fea37eb (patch) | |
tree | 109e24fae63d38d6e566c791d73df2c3609d4d4d /Misc | |
parent | 3c749fc867f69deac75f866d5c1ba0f60e54c1fa (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |