diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2017-05-05 21:27:12 (GMT) |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-05-05 21:27:12 (GMT) |
commit | a12df7b7d40dbf47825917c8fa03d2c09b5a382c (patch) | |
tree | ad818268e3f1adb56743292245eac64c8ce9be20 /Misc | |
parent | a1054c3b0037d4c2a5492e79fc193f36245366c7 (diff) | |
download | cpython-a12df7b7d40dbf47825917c8fa03d2c09b5a382c.zip cpython-a12df7b7d40dbf47825917c8fa03d2c09b5a382c.tar.gz cpython-a12df7b7d40dbf47825917c8fa03d2c09b5a382c.tar.bz2 |
bpo-30218: support path-like objects in shutil.unpack_archive() (GH-1367)
Thanks to Jelle Zijlstra for the patch.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -362,6 +362,9 @@ Library Fixed possible other errors caused by not checking results of PyObject_Size(), PySequence_Size(), or PyMapping_Size(). +- bpo-30218: Fix PathLike support for shutil.unpack_archive. Patch by Jelle + Zijlstra. + - bpo-10076: Compiled regular expression and match objects in the re module now support copy.copy() and copy.deepcopy() (they are considered atomic). |