summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-08 15:44:50 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-08 15:44:50 (GMT)
commit5493d5ea2afec8a1ff3227e08e908c6e433638cc (patch)
tree86070bc851a043dd89168ff1b20419ea439bb648 /Misc
parent337c50b8cb84155918ff0b4b5478c70f7a6f3faf (diff)
downloadcpython-5493d5ea2afec8a1ff3227e08e908c6e433638cc.zip
cpython-5493d5ea2afec8a1ff3227e08e908c6e433638cc.tar.gz
cpython-5493d5ea2afec8a1ff3227e08e908c6e433638cc.tar.bz2
Issue #19099: The struct module now supports Unicode format strings.
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 928a18e..e3abaec 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,8 @@ Core and Builtins
Library
-------
+- Issue #19099: The struct module now supports Unicode format strings.
+
- Issue #19878: Fix segfault in bz2 module after calling __init__ twice with
non-existent filename. Initial patch by Vajrasky Kok.