We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c360bd commit 27f6364Copy full SHA for 27f6364
Modules/_struct.c
@@ -2426,7 +2426,7 @@ PyDoc_STRVAR(s_sizeof__doc__,
2426
"S.__sizeof__() -> size of S in memory, in bytes");
2427
2428
static PyObject *
2429
-s_sizeof(PyObject *op, PyObject *Py_UNUSED(unused))
+s_sizeof(PyObject *op, PyObject *Py_UNUSED(dummy))
2430
{
2431
PyStructObject *self = PyStructObject_CAST(op);
2432
size_t size = _PyObject_SIZE(Py_TYPE(self)) + sizeof(formatcode);
0 commit comments