summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-30 14:48:54 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-30 14:48:54 (GMT)
commite90982111ae1accc2a2ecaae94650a1d16a772ff (patch)
tree960c19c6de6a13c3aa3f1388ffe2898c112c61d0 /Misc
parentf49c42324fb85596bcfaaba236ecd6e22138be72 (diff)
parentac5569b1fa483c50edca82bab1ab0a8a927ba86a (diff)
downloadcpython-e90982111ae1accc2a2ecaae94650a1d16a772ff.zip
cpython-e90982111ae1accc2a2ecaae94650a1d16a772ff.tar.gz
cpython-e90982111ae1accc2a2ecaae94650a1d16a772ff.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 a317511..8ccdcba 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,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.