mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
Issue #18722: Remove uses of the "register" keyword in C code.
This commit is contained in:
parent
9eaa3e6732
commit
9ed5f27266
38 changed files with 288 additions and 286 deletions
|
@ -176,7 +176,7 @@ namespace_richcompare(PyObject *self, PyObject *other, int op)
|
|||
PyDoc_STRVAR(namespace_reduce__doc__, "Return state information for pickling");
|
||||
|
||||
static PyObject *
|
||||
namespace_reduce(register _PyNamespaceObject *ns)
|
||||
namespace_reduce(_PyNamespaceObject *ns)
|
||||
{
|
||||
PyObject *result, *args = PyTuple_New(0);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue