Fix whitespace in generated code

This commit is contained in:
Mark Shannon
2023-12-13 12:31:41 +00:00
committed by GitHub
parent 2a3c37c273
commit 9263173280
2 changed files with 10 additions and 9 deletions

View File

@@ -1842,7 +1842,7 @@
PyObject *null = NULL;
oparg = CURRENT_OPARG();
owner = stack_pointer[-1];
PyObject * descr = (PyObject *)CURRENT_OPERAND();
PyObject *descr = (PyObject *)CURRENT_OPERAND();
STAT_INC(LOAD_ATTR, hit);
assert(descr != NULL);
attr = Py_NewRef(descr);
@@ -2546,7 +2546,7 @@
PyObject *self = NULL;
oparg = CURRENT_OPARG();
owner = stack_pointer[-1];
PyObject * descr = (PyObject *)CURRENT_OPERAND();
PyObject *descr = (PyObject *)CURRENT_OPERAND();
assert(oparg & 1);
/* Cached method object */
STAT_INC(LOAD_ATTR, hit);
@@ -2566,7 +2566,7 @@
PyObject *self = NULL;
oparg = CURRENT_OPARG();
owner = stack_pointer[-1];
PyObject * descr = (PyObject *)CURRENT_OPERAND();
PyObject *descr = (PyObject *)CURRENT_OPERAND();
assert(oparg & 1);
assert(Py_TYPE(owner)->tp_dictoffset == 0);
STAT_INC(LOAD_ATTR, hit);
@@ -2585,7 +2585,7 @@
PyObject *attr;
oparg = CURRENT_OPARG();
owner = stack_pointer[-1];
PyObject * descr = (PyObject *)CURRENT_OPERAND();
PyObject *descr = (PyObject *)CURRENT_OPERAND();
assert((oparg & 1) == 0);
STAT_INC(LOAD_ATTR, hit);
assert(descr != NULL);
@@ -2601,7 +2601,7 @@
PyObject *attr;
oparg = CURRENT_OPARG();
owner = stack_pointer[-1];
PyObject * descr = (PyObject *)CURRENT_OPERAND();
PyObject *descr = (PyObject *)CURRENT_OPERAND();
assert((oparg & 1) == 0);
assert(Py_TYPE(owner)->tp_dictoffset == 0);
STAT_INC(LOAD_ATTR, hit);
@@ -2630,7 +2630,7 @@
PyObject *self = NULL;
oparg = CURRENT_OPARG();
owner = stack_pointer[-1];
PyObject * descr = (PyObject *)CURRENT_OPERAND();
PyObject *descr = (PyObject *)CURRENT_OPERAND();
assert(oparg & 1);
STAT_INC(LOAD_ATTR, hit);
assert(descr != NULL);