mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +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
|
|
@ -211,7 +211,7 @@ complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval)
|
|||
PyObject *
|
||||
PyComplex_FromCComplex(Py_complex cval)
|
||||
{
|
||||
register PyComplexObject *op;
|
||||
PyComplexObject *op;
|
||||
|
||||
/* Inline PyObject_New */
|
||||
op = (PyComplexObject *) PyObject_MALLOC(sizeof(PyComplexObject));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue