Fix leak introduced by previous typeobject.c checkin.
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 2708cdc..cc844ad 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -3569,16 +3569,15 @@
 {
 	objobjproc func = (objobjproc)wrapped;
 	int res;
-	PyObject *value, *ret;
+	PyObject *value;
 
 	if (!PyArg_ParseTuple(args, "O", &value))
 		return NULL;
 	res = (*func)(self, value);
 	if (res == -1 && PyErr_Occurred())
 		return NULL;
-	ret = PyObject_IsTrue(PyInt_FromLong((long)res)) ? Py_True : Py_False;
-	Py_INCREF(ret);
-	return ret;
+	else
+		return PyBool_FromLong(res);
 }
 
 static PyObject *