summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-11-12 15:19:46 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-11-12 15:19:46 (GMT)
commit6c14f231005a2a3a63bd4b0157c908e94bd834ac (patch)
tree8d1e7e34b0f8b26dd89272091636bd34dce0104d /Misc/NEWS
parentdfede95a069d418c91a26d5999958b525172e687 (diff)
downloadcpython-6c14f231005a2a3a63bd4b0157c908e94bd834ac.zip
cpython-6c14f231005a2a3a63bd4b0157c908e94bd834ac.tar.gz
cpython-6c14f231005a2a3a63bd4b0157c908e94bd834ac.tar.bz2
fix possible double free in TextIOWrapper.__init__ (closes #22849)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7331e99..bb58965 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,8 @@ Core and Builtins
Library
-------
+- Issue #22849: Fix possible double free in the io.TextIOWrapper constructor.
+
- Issue #12728: Different Unicode characters having the same uppercase but
different lowercase are now matched in case-insensitive regular expressions.