diff --git a/Objects/object.c b/Objects/object.c index 3a7619324d2..08abe71cca5 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -506,7 +506,7 @@ PyObject_Unicode(PyObject *v) func = _PyObject_LookupSpecial(v, "__unicode__", &unicodestr); if (func != NULL) { unicode_method_found = 1; - res = PyObject_CallFunctionObjArgs(func, v, NULL); + res = PyObject_CallFunctionObjArgs(func, NULL); Py_DECREF(func); } }