Thanks to visit codestin.com Credit goes to github.com
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 9a6b278 commit 7fc9be3Copy full SHA for 7fc9be3
1 file changed
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