summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-02-05 18:54:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-02-05 18:54:43 (GMT)
commit255493c81321f56afd32fb2e18d5eb3a13bed42f (patch)
treea928f22b921ffcf250451e3b271407ff1cca6adb /Misc/NEWS
parent4d5d69d452d37bfc29d8f182cb4b99a344f0dadb (diff)
parent3b4f1594ffb360e9a93841a4c8dfe00d6f519bf6 (diff)
downloadcpython-255493c81321f56afd32fb2e18d5eb3a13bed42f.zip
cpython-255493c81321f56afd32fb2e18d5eb3a13bed42f.tar.gz
cpython-255493c81321f56afd32fb2e18d5eb3a13bed42f.tar.bz2
Issue #19920: TarFile.list() no longer fails when outputs a listing
containing non-encodable characters. Added tests for TarFile.list(). Based on patch by Vajrasky Kok.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 90da3a7..99214b7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
+- Issue #19920: TarFile.list() no longer fails when outputs a listing
+ containing non-encodable characters. Based on patch by Vajrasky Kok.
+
- Issue #20515: Fix NULL pointer dereference introduced by issue #20368.
- Issue #19186: Restore namespacing of expat symbols inside the pyexpat module.
@@ -118,6 +121,8 @@ IDLE
Tests
-----
+- Issue #19920: Added tests for TarFile.list(). Based on patch by Vajrasky Kok.
+
- Issue #19990: Added tests for the imghdr module. Based on patch by
Claudiu Popa.