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 203c135 commit 86541feCopy full SHA for 86541fe
Lib/test/test_capi/test_opt.py
@@ -2747,6 +2747,8 @@ def testfunc(n):
2747
uops = get_opnames(ex)
2748
self.assertIn("_CALL_BUILTIN_FAST", uops)
2749
self.assertNotIn("_GUARD_CALLABLE_BUILTIN_FAST", uops)
2750
+ # divmod(10, 3) should have at least 3 _POP_TOP_NOP
2751
+ # x += y[0] produces at least 3 _POP_TOP_NOP
2752
self.assertGreaterEqual(count_ops(ex, "_POP_TOP_NOP"), 6)
2753
2754
def test_call_builtin_fast_with_keywords(self):
0 commit comments