commit | dfc80e3d97680ee26e509daba4a08502fefe22ee | [log] [tgz] |
---|---|---|
author | Brian Curtin <brian@python.org> | Wed Aug 10 20:28:54 2011 -0500 |
committer | Brian Curtin <brian@python.org> | Wed Aug 10 20:28:54 2011 -0500 |
tree | f28c4978ce126c4308a45aa594f0f2c86dfc1965 | |
parent | 7d2f9e13424fe74814e14cf92d7bbd779917a5c5 [diff] [blame] |
Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. The macro was introduced in #12724.
diff --git a/Modules/xxlimited.c b/Modules/xxlimited.c index ec924f2..661b6e2 100644 --- a/Modules/xxlimited.c +++ b/Modules/xxlimited.c
@@ -187,8 +187,7 @@ static PyObject * null_richcompare(PyObject *self, PyObject *other, int op) { - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; + Py_RETURN_NOTIMPLEMENTED; } static PyType_Slot Null_Type_slots[] = {