summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-30 14:48:19 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-30 14:48:19 (GMT)
commitac5569b1fa483c50edca82bab1ab0a8a927ba86a (patch)
tree9eada65cbf98a2158fda4b3a668ad5ee5969f1c5 /Misc
parentbf2b3b72d370f866aa5b8f9077ff37e7c53de894 (diff)
parentfa494fd88384acc52cf9292d0c89e2961c8f747f (diff)
downloadcpython-ac5569b1fa483c50edca82bab1ab0a8a927ba86a.zip
cpython-ac5569b1fa483c50edca82bab1ab0a8a927ba86a.tar.gz
cpython-ac5569b1fa483c50edca82bab1ab0a8a927ba86a.tar.bz2
Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2ccbae6..d6ff9e4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Release date: 2015-07-05
Core and Builtins
-----------------
+- Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
+ PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains()
+ to check for and handle errors correctly.
+
- Issue #24328: Fix importing one character extension modules.
- Issue #11205: In dictionary displays, evaluate the key before the value.