diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-02-15 16:19:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-15 16:19:24 (GMT) |
commit | 4bb2a1ebc569eee6f1b46ecef1965a26ae8cb76d (patch) | |
tree | 3d35304e122385f6f9a3e79f123a51035dfc8b77 /Misc | |
parent | fcbe0cb04d35189401c0c880ebfb4311e952d776 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-02-11-11-37-14.bpo-43181.ydv33S.rst | 2 |
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. |