We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a458be3 commit b2694abCopy full SHA for b2694ab
Include/cpython/unicodeobject.h
@@ -193,7 +193,7 @@ static inline unsigned int PyUnicode_CHECK_INTERNED(PyObject *op) {
193
#endif
194
195
/* For backward compatibility */
196
-static inline unsigned int PyUnicode_IS_READY(PyObject *op) {
+static inline unsigned int PyUnicode_IS_READY(PyObject* Py_UNUSED(op)) {
197
return 1;
198
}
199
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
@@ -413,7 +413,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_New(
413
);
414
415
416
-static inline int PyUnicode_READY(PyObject *op)
+static inline int PyUnicode_READY(PyObject* Py_UNUSED(op))
417
{
418
return 0;
419
0 commit comments