summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-09-25 08:09:11 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-09-25 08:09:11 (GMT)
commit57c2561c8c5663aef55b00e3f29cba575ff36ccd (patch)
tree36217c977dffe90a97c1e8043dac073865010bfc /Misc
parent0d4497b9cae7942b7f731a6f99a73985c3fb4630 (diff)
downloadcpython-57c2561c8c5663aef55b00e3f29cba575ff36ccd.zip
cpython-57c2561c8c5663aef55b00e3f29cba575ff36ccd.tar.gz
cpython-57c2561c8c5663aef55b00e3f29cba575ff36ccd.tar.bz2
bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in case of a bad __dict__. (#3254)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-08-31-17-52-56.bpo-31311.bNE2l-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-08-31-17-52-56.bpo-31311.bNE2l-.rst b/Misc/NEWS.d/next/Core and Builtins/2017-08-31-17-52-56.bpo-31311.bNE2l-.rst
new file mode 100644
index 0000000..db51cd2
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-08-31-17-52-56.bpo-31311.bNE2l-.rst
@@ -0,0 +1,2 @@
+Fix a crash in the ``__setstate__()`` method of `ctypes._CData`, in case of
+a bad ``__dict__``. Patch by Oren Milman.