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 b152a11 commit 235f4bdCopy full SHA for 235f4bd
1 file changed
Lib/test/test_capi/test_opt.py
@@ -1619,7 +1619,7 @@ def testfunc(n):
1619
self.assertNotIn("_UNARY_NEGATIVE", uops)
1620
self.assertNotIn("_POP_TOP_LOAD_CONST_INLINE_BORROW", uops)
1621
1622
- def test_unary_not_insert_1_load_const_inline_borrow(self):
+ def test_unary_not_pop_top_load_const_inline_borrow(self):
1623
def testfunc(n):
1624
x = 0
1625
for i in range(n):
@@ -1634,7 +1634,7 @@ def testfunc(n):
1634
self.assertIsNotNone(ex)
1635
uops = get_opnames(ex)
1636
self.assertNotIn("_UNARY_NOT", uops)
1637
- self.assertNotIn("_INSERT_1_LOAD_CONST_INLINE_BORROW", uops)
+ self.assertNotIn("_POP_TOP_LOAD_CONST_INLINE_BORROW", uops)
1638
1639
def test_unary_invert_insert_1_load_const_inline_borrow(self):
1640
0 commit comments