summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-08-29 08:58:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-08-29 08:58:27 (GMT)
commitba7d7365215d791025d1efd25393c91404f2cfc8 (patch)
tree8ba0a3b1944172f450f0d76f588bb106dd50e174 /Misc
parente9d978fd1bc122395efc91a82b16b2c4b968441d (diff)
downloadcpython-ba7d7365215d791025d1efd25393c91404f2cfc8.zip
cpython-ba7d7365215d791025d1efd25393c91404f2cfc8.tar.gz
cpython-ba7d7365215d791025d1efd25393c91404f2cfc8.tar.bz2
bpo-31243: Fixed PyArg_ParseTuple failure checks. (#3171)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-08-24-13-34-49.bpo-31243.dRJzqR.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-08-24-13-34-49.bpo-31243.dRJzqR.rst b/Misc/NEWS.d/next/Core and Builtins/2017-08-24-13-34-49.bpo-31243.dRJzqR.rst
new file mode 100644
index 0000000..166458f
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-08-24-13-34-49.bpo-31243.dRJzqR.rst
@@ -0,0 +1,2 @@
+Fix a crash in some methods of `io.TextIOWrapper`, when the decoder's state
+is invalid. Patch by Oren Milman.