summaryrefslogtreecommitdiffstats
path: root/Include/methodobject.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-05-03 14:37:06 (GMT)
committerGitHub <noreply@github.com>2022-05-03 14:37:06 (GMT)
commitfbd5539a54a1cf79dd9623a24d42d363bf084897 (patch)
tree2fa49feb64acb58f36fe9456143e5d0270da1350 /Include/methodobject.h
parentf6f36cc26978e3036a6c5c068fca5b8135f27ef3 (diff)
downloadcpython-fbd5539a54a1cf79dd9623a24d42d363bf084897.zip
cpython-fbd5539a54a1cf79dd9623a24d42d363bf084897.tar.gz
cpython-fbd5539a54a1cf79dd9623a24d42d363bf084897.tar.bz2
gh-92135: Rename _Py_reinterpret_cast() to _Py_CAST() (#92230)
Rename also _Py_static_cast() to _Py_STATIC_CAST().
Diffstat (limited to 'Include/methodobject.h')
-rw-r--r--Include/methodobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index f4be385..c971d78 100644
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -43,7 +43,7 @@ typedef PyObject *(*PyCMethod)(PyObject *, PyTypeObject *, PyObject *const *,
// it triggers an undefined behavior when Python calls it with 2 parameters
// (bpo-33012).
#define _PyCFunction_CAST(func) \
- _Py_reinterpret_cast(PyCFunction, _Py_reinterpret_cast(void(*)(void), (func)))
+ _Py_CAST(PyCFunction, _Py_CAST(void(*)(void), (func)))
PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *);