summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLars Gustäbel <lars@gustaebel.de>2012-05-05 16:15:03 (GMT)
committerLars Gustäbel <lars@gustaebel.de>2012-05-05 16:15:03 (GMT)
commit7a919e993052deec2826d6ba823156c805b1a9d9 (patch)
tree27fadbf121cdccef114d61d62f211a890d1455fe /Misc
parentef5a4636d078d87d30885a9c371671a217754c8d (diff)
downloadcpython-7a919e993052deec2826d6ba823156c805b1a9d9.zip
cpython-7a919e993052deec2826d6ba823156c805b1a9d9.tar.gz
cpython-7a919e993052deec2826d6ba823156c805b1a9d9.tar.bz2
Issue #13815: TarFile.extractfile() now returns io.BufferedReader objects.
The ExFileObject class was removed, some of its code went into _FileInFile.
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 6251da6..92139d9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,8 @@ Core and Builtins
Library
-------
+- Issue #13815: TarFile.extractfile() now returns io.BufferedReader objects.
+
- Issue #14371: Support bzip2 in zipfile module.
Patch by Serhiy Storchaka.