We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aeffc0 commit 901cf21Copy full SHA for 901cf21
Lib/test/test_capi/test_misc.py
@@ -2436,7 +2436,7 @@ def get_first_executor(func):
2436
co_code = code.co_code
2437
JUMP_BACKWARD = opcode.opmap["JUMP_BACKWARD"]
2438
for i in range(0, len(co_code), 2):
2439
- if co_code[i] == JUMP_BACKWARD or 1:
+ if co_code[i] == JUMP_BACKWARD:
2440
try:
2441
return _testinternalcapi.get_executor(code, i)
2442
except ValueError:
0 commit comments