diff options
author | Georg Brandl <georg@python.org> | 2014-10-03 07:26:37 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-03 07:26:37 (GMT) |
commit | 72b8a80e5975a75398872a8406e4215937874165 (patch) | |
tree | b0aaba5266e9bb3864227691a9dc2db5c092d0f0 /Misc/NEWS | |
parent | f355943002b0bf957d3481e7699dc626997ed901 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |