summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2017-05-05 21:27:12 (GMT)
committerBrett Cannon <brettcannon@users.noreply.github.com>2017-05-05 21:27:12 (GMT)
commita12df7b7d40dbf47825917c8fa03d2c09b5a382c (patch)
treead818268e3f1adb56743292245eac64c8ce9be20 /Misc
parenta1054c3b0037d4c2a5492e79fc193f36245366c7 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 25619ef..0c403cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).