summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-06-08 11:24:40 (GMT)
committerGitHub <noreply@github.com>2021-06-08 11:24:40 (GMT)
commit6d518bb3a11f9b16098f45b21a13ebe8f537f045 (patch)
treeba4fc829f99c71557eb47e165e198f4ad525ec85 /Misc
parentd56e700d6c7ebf1a424260d0e4f0c291d1f5b3af (diff)
downloadcpython-6d518bb3a11f9b16098f45b21a13ebe8f537f045.zip
cpython-6d518bb3a11f9b16098f45b21a13ebe8f537f045.tar.gz
cpython-6d518bb3a11f9b16098f45b21a13ebe8f537f045.tar.bz2
bpo-44348: Revert "bpo-39573: Py_TYPE becomes a static inline function (GH-26493)" (GH-26596)
This reverts commit f3fa63ec75fdbb4a08a10957a5c631bf0c4a5970 as is causing crashes in some Windows tests in the buildbots.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2021-06-03-00-59-48.bpo-39573.-elHTJ.rst3
1 files changed, 0 insertions, 3 deletions
diff --git a/Misc/NEWS.d/next/C API/2021-06-03-00-59-48.bpo-39573.-elHTJ.rst b/Misc/NEWS.d/next/C API/2021-06-03-00-59-48.bpo-39573.-elHTJ.rst
deleted file mode 100644
index d9641ed..0000000
--- a/Misc/NEWS.d/next/C API/2021-06-03-00-59-48.bpo-39573.-elHTJ.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Convert the :c:func:`Py_TYPE` and :c:func:`Py_SIZE` macros to static inline
-functions. The :c:func:`Py_SET_TYPE` and :c:func:`Py_SET_SIZE` functions
-must now be used to set an object type and size. Patch by Victor Stinner.