summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-04 14:06:30 (GMT)
committerJesus Cea <jcea@jcea.es>2012-10-04 14:06:30 (GMT)
commit6e1d2b6e7889a138c02c027f8c3dce6ead62e3cf (patch)
tree20f290d7aba6c6037157b89e1e2e73cbe4c7cbe4 /Misc/NEWS
parente8801e2e44b4ffcfdfc6e2857e7afc90ba6abc38 (diff)
downloadcpython-6e1d2b6e7889a138c02c027f8c3dce6ead62e3cf.zip
cpython-6e1d2b6e7889a138c02c027f8c3dce6ead62e3cf.tar.gz
cpython-6e1d2b6e7889a138c02c027f8c3dce6ead62e3cf.tar.bz2
Closes #16126: PyErr_Format format mismatch in _testcapimodule.c
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4051d2b..3ad1bc8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -73,6 +73,9 @@ Library
`io.BytesIO` and `io.StringIO` objects now raise ValueError when the object
has been closed. Patch by Alessandro Moura.
+- Issue #16126: PyErr_Format format mismatch in _testcapimodule.c.
+ Patch by Serhiy Storchaka.
+
- Issue #15447: Use `subprocess.DEVNULL` in webbrowser, instead of opening
`os.devnull` explicitly and leaving it open.