this is now a bound method
diff --git a/Objects/object.c b/Objects/object.c
index 3a76193..08abe71 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -506,7 +506,7 @@
 		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);
 		}
 	}