Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b14e882

Browse files
authored
GH-111485: Use micro-ops to split specialization code from base action (GH-111561)
1 parent eaf67e3 commit b14e882

File tree

9 files changed

+858
-577
lines changed

9 files changed

+858
-577
lines changed

Include/internal/pycore_opcode_metadata.h

Lines changed: 253 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Lib/test/test_capi/test_misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2595,7 +2595,7 @@ def testfunc(x):
25952595
ex = get_first_executor(testfunc)
25962596
self.assertIsNotNone(ex)
25972597
uops = {opname for opname, _, _ in ex}
2598-
self.assertIn("UNPACK_SEQUENCE", uops)
2598+
self.assertIn("_UNPACK_SEQUENCE", uops)
25992599

26002600
def test_pop_jump_if_false(self):
26012601
def testfunc(n):

Python/abstract_interp_cases.c.h

Lines changed: 13 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)