summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-03 07:26:37 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-03 07:26:37 (GMT)
commit72b8a80e5975a75398872a8406e4215937874165 (patch)
treeb0aaba5266e9bb3864227691a9dc2db5c092d0f0 /Misc/NEWS
parentf355943002b0bf957d3481e7699dc626997ed901 (diff)
downloadcpython-72b8a80e5975a75398872a8406e4215937874165.zip
cpython-72b8a80e5975a75398872a8406e4215937874165.tar.gz
cpython-72b8a80e5975a75398872a8406e4215937874165.tar.bz2
Closes #22540: speed up PyObject_IsInstance and PyObject_IsSubclass in the common case that the second argument has metaclass "type".
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 7d8a800..dda3843 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #22540: speed up `PyObject_IsInstance` and `PyObject_IsSubclass` in the
+ common case that the second argument has metaclass `type`.
+
- Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format`
but accepting a `va_list` argument.