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 27e9def commit 301060bCopy full SHA for 301060b
Lib/test/test_capi/test_opt.py
@@ -2760,6 +2760,8 @@ def testfunc(n):
2760
self.assertIn("_CALL_METHOD_DESCRIPTOR_O_INLINE", uops)
2761
self.assertNotIn("_CALL_METHOD_DESCRIPTOR_O", uops)
2762
self.assertNotIn("_GUARD_CALLABLE_METHOD_DESCRIPTOR_O", uops)
2763
+ self.assertIn("_POP_TOP_NOP", uops)
2764
+ self.assertLessEqual(count_ops(ex, "_POP_TOP"), 4)
2765
2766
def test_call_method_descriptor_noargs(self):
2767
def testfunc(n):
0 commit comments