summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-02-15 16:19:24 (GMT)
committerGitHub <noreply@github.com>2021-02-15 16:19:24 (GMT)
commit4bb2a1ebc569eee6f1b46ecef1965a26ae8cb76d (patch)
tree3d35304e122385f6f9a3e79f123a51035dfc8b77 /Misc/NEWS.d
parentfcbe0cb04d35189401c0c880ebfb4311e952d776 (diff)
downloadcpython-4bb2a1ebc569eee6f1b46ecef1965a26ae8cb76d.zip
cpython-4bb2a1ebc569eee6f1b46ecef1965a26ae8cb76d.tar.gz
cpython-4bb2a1ebc569eee6f1b46ecef1965a26ae8cb76d.tar.bz2
bpo-43181: Convert PyObject_TypeCheck to static inline function (GH-24533)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-02-11-11-37-14.bpo-43181.ydv33S.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-02-11-11-37-14.bpo-43181.ydv33S.rst b/Misc/NEWS.d/next/Core and Builtins/2021-02-11-11-37-14.bpo-43181.ydv33S.rst
new file mode 100644
index 0000000..0e0a571
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-02-11-11-37-14.bpo-43181.ydv33S.rst
@@ -0,0 +1,2 @@
+Convert :c:func:`PyObject_TypeCheck` macro to a static inline function. Patch by
+Erlend E. Aasland.