diff options
author | Victor Stinner <vstinner@python.org> | 2022-05-03 14:37:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 14:37:06 (GMT) |
commit | fbd5539a54a1cf79dd9623a24d42d363bf084897 (patch) | |
tree | 2fa49feb64acb58f36fe9456143e5d0270da1350 /Include/cpython/listobject.h | |
parent | f6f36cc26978e3036a6c5c068fca5b8135f27ef3 (diff) | |
download | cpython-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/cpython/listobject.h')
-rw-r--r-- | Include/cpython/listobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/listobject.h b/Include/cpython/listobject.h index 298bfcb..ebbea5e 100644 --- a/Include/cpython/listobject.h +++ b/Include/cpython/listobject.h @@ -26,7 +26,7 @@ PyAPI_FUNC(void) _PyList_DebugMallocStats(FILE *out); /* Cast argument to PyListObject* type. */ #define _PyList_CAST(op) \ - (assert(PyList_Check(op)), _Py_reinterpret_cast(PyListObject*, (op))) + (assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op))) // Macros and static inline functions, trading safety for speed |