diff options
author | Wenzel Jakob <wenzel.jakob@epfl.ch> | 2022-05-23 14:15:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-23 14:15:09 (GMT) |
commit | b2694ab46997746eae7e913738623b39f6334473 (patch) | |
tree | 5e2169796bd7cbe9bbb0427854a58360d846791e /Include/cpython | |
parent | a458be3263b4cb92f3fde726461e8ef44b2a4a9d (diff) | |
download | cpython-b2694ab46997746eae7e913738623b39f6334473.zip cpython-b2694ab46997746eae7e913738623b39f6334473.tar.gz cpython-b2694ab46997746eae7e913738623b39f6334473.tar.bz2 |
gh-92536: Mark PyUnicode_READY() argument as unused (#93011)
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/unicodeobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/cpython/unicodeobject.h b/Include/cpython/unicodeobject.h index 758aaff..3adfcb7 100644 --- a/Include/cpython/unicodeobject.h +++ b/Include/cpython/unicodeobject.h @@ -193,7 +193,7 @@ static inline unsigned int PyUnicode_CHECK_INTERNED(PyObject *op) { #endif /* For backward compatibility */ -static inline unsigned int PyUnicode_IS_READY(PyObject *op) { +static inline unsigned int PyUnicode_IS_READY(PyObject* Py_UNUSED(op)) { return 1; } #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000 @@ -413,7 +413,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_New( ); /* For backward compatibility */ -static inline int PyUnicode_READY(PyObject *op) +static inline int PyUnicode_READY(PyObject* Py_UNUSED(op)) { return 0; } |