8000 gh-106044: Fix whitespace · python/cpython@6921930 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6921930

Browse files
gh-106044: Fix whitespace
1 parent 21d086e commit 6921930

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Python/bytecodes.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ dummy_func(
134134
// BEGIN BYTECODES //
135135
inst(NOP, (--)) {
136136
}
137-
138137
inst(RESUME, (--)) {
139138
assert(tstate->cframe == &cframe);
140139
assert(frame == cframe.current_frame);
@@ -192,13 +191,12 @@ dummy_func(
192191
assert(value != NULL);
193192
Py_INCREF(value);
194193
}
195-
194+
196195
inst(LOAD_FAST_AND_CLEAR, (-- value)) {
197196
value = GETLOCAL(oparg);
198197
// do not use SETLOCAL here, it decrefs the old value
199198
GETLOCAL(oparg) = NULL;
200199
}
201-
202200
inst(LOAD_FAST_LOAD_FAST, ( -- value1, value2)) {
203201
uint32_t oparg1 = oparg >> 4;
204202
uint32_t oparg2 = oparg & 15;

Python/compile.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,6 @@ stack_effect(int opcode, int oparg, int jump)
843843
* of __(a)enter__ and push 2 values before jumping to the handler
844844
* if an exception be raised. */
845845
return jump ? 1 : 0;
846-
847846
case STORE_FAST_MAYBE_NULL:
848847
return -1;
849848
case LOAD_CLOSURE:

0 commit comments

Comments
 (0)
0