Skip to content

Commit

Permalink
Add space between +=
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Sep 1, 2023
1 parent 05773f9 commit 9ddbfe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/codeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ clear_executors(PyCodeObject *co)
void
_PyCode_Clear_Executors(PyCodeObject *code) {
int code_len = (int)Py_SIZE(code);
for (int i = 0; i < code_len; i+=_PyInstruction_GetLength(code, i)) {
for (int i = 0; i < code_len; i += _PyInstruction_GetLength(code, i)) {
_Py_CODEUNIT *instr = &_PyCode_CODE(code)[i];
uint8_t opcode = instr->op.code;
uint8_t oparg = instr->op.arg;
Expand Down

0 comments on commit 9ddbfe7

Please sign in to comment.