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 400bdcb commit 5013a83Copy full SHA for 5013a83
Lib/test/test_dis.py
@@ -941,7 +941,7 @@ def loop_test():
941
LOAD_FAST_BORROW 0 (i)
942
CALL_PY_GENERAL 1
943
POP_TOP
944
- JUMP_BACKWARD{: <6} 16 (to L1)
+ JUMP_BACKWARD_{: <6} 16 (to L1)
945
946
%3d L2: END_FOR
947
POP_ITER
@@ -1371,7 +1371,7 @@ def test_loop_quicken(self):
1371
got = self.get_disassembly(loop_test, adaptive=True)
1372
jit = sys._jit.is_enabled()
1373
resume_str = "_JIT" if jit else ""
1374
- jit_str = "_JIT" if jit else "NO_JIT"
+ jit_str = "JIT " if jit else "NO_JIT"
1375
expected = dis_loop_test_quickened_code.format(resume_str, jit_str)
1376
self.do_disassembly_compare(got, expected)
1377
0 commit comments