mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
possible. Patch is writen with Coccinelle.
This commit is contained in:
parent
60e6e962ba
commit
228b12edcc
57 changed files with 225 additions and 445 deletions
|
|
@ -677,8 +677,7 @@ zipimporter_get_source(PyObject *obj, PyObject *args)
|
|||
}
|
||||
|
||||
/* we have the module, but no source */
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None;
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(doc_find_module,
|
||||
|
|
@ -1284,8 +1283,7 @@ unmarshal_code(PyObject *pathname, PyObject *data, time_t mtime)
|
|||
PySys_FormatStderr("# %R has bad magic\n",
|
||||
pathname);
|
||||
}
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None; /* signal caller to try alternative */
|
||||
Py_RETURN_NONE; /* signal caller to try alternative */
|
||||
}
|
||||
|
||||
if (mtime != 0 && !eq_mtime(get_uint32(buf + 4), mtime)) {
|
||||
|
|
@ -1293,8 +1291,7 @@ unmarshal_code(PyObject *pathname, PyObject *data, time_t mtime)
|
|||
PySys_FormatStderr("# %R has bad mtime\n",
|
||||
pathname);
|
||||
}
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None; /* signal caller to try alternative */
|
||||
Py_RETURN_NONE; /* signal caller to try alternative */
|
||||
}
|
||||
|
||||
/* XXX the pyc's size field is ignored; timestamp collisions are probably
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue