summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-08-06 15:50:19 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-08-06 15:50:19 (GMT)
commit1121377cdb0bef5a4a07699ae3d93c69a1f47071 (patch)
tree13cd19069226278293cc35e2f7b2b7171a695be1 /Misc
parentaf78ef18241040a91e793bfc511a182d9e5d0bc2 (diff)
downloadcpython-1121377cdb0bef5a4a07699ae3d93c69a1f47071.zip
cpython-1121377cdb0bef5a4a07699ae3d93c69a1f47071.tar.gz
cpython-1121377cdb0bef5a4a07699ae3d93c69a1f47071.tar.bz2
Issue #5411: Added support for the "xztar" format in the shutil module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 932e239..877384f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -112,6 +112,8 @@ Core and Builtins
Library
-------
+- Issue #5411: Added support for the "xztar" format in the shutil module.
+
- Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular
when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the
__new__() method.