summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-10-29 22:43:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-10-29 22:43:41 (GMT)
commita4c704b260cc9c020d19f8417cb4524a19d0e90c (patch)
tree06614fd14300d0d8e97843b0c8626cd3bceb7b73 /Misc
parent602f7cf0b9afc1c7e0ab859bcfb219d20158a786 (diff)
downloadcpython-a4c704b260cc9c020d19f8417cb4524a19d0e90c.zip
cpython-a4c704b260cc9c020d19f8417cb4524a19d0e90c.tar.gz
cpython-a4c704b260cc9c020d19f8417cb4524a19d0e90c.tar.bz2
Issue #19424: Fix the warnings module to accept filename containing surrogate
characters.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6432564..ab0893f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,9 @@ Core and Builtins
Library
-------
+- Issue #19424: Fix the warnings module to accept filename containing surrogate
+ characters.
+
- Issue #19227: Remove pthread_atfork() handler. The handler was added to
solve #18747 but has caused issues.