Commit ed1eafb9 authored by Benjamin Peterson's avatar Benjamin Peterson

use NULL not 0

parent 1fb80a3a
......@@ -2191,9 +2191,8 @@ PyObject_CallMethod(PyObject *o, const char *name, const char *format, ...)
return null_error();
func = PyObject_GetAttrString(o, name);
if (func == NULL) {
return 0;
}
if (func == NULL)
return NULL;
va_start(va, format);
retval = callmethod(func, format, va, 0);
......@@ -2213,9 +2212,8 @@ _PyObject_CallMethodId(PyObject *o, _Py_Identifier *name,
return null_error();
func = _PyObject_GetAttrId(o, name);
if (func == NULL) {
return 0;
}
if (func == NULL)
return NULL;
va_start(va, format);
retval = callmethod(func, format, va, 0);
......@@ -2235,9 +2233,8 @@ _PyObject_CallMethod_SizeT(PyObject *o, const char *name,
return null_error();
func = PyObject_GetAttrString(o, name);
if (func == NULL) {
return 0;
}
if (func == NULL)
return NULL;
va_start(va, format);
retval = callmethod(func, format, va, 1);
va_end(va);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment