Skip to content

Commit 9c9d136

Browse files
committed
Fix invalid merge
1 parent f4f0c93 commit 9c9d136

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Lib/test/test_capi/test_opt.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2897,7 +2897,6 @@ def testfunc(n):
28972897
self.assertIn("_POP_TOP_NOP", uops)
28982898
self.assertLessEqual(count_ops(ex, "_POP_TOP"), 2)
28992899

2900-
<<<<<<< HEAD
29012900
def test_binary_op_refcount_elimination(self):
29022901
class CustomAdder:
29032902
def __init__(self, val):
@@ -2918,7 +2917,7 @@ def testfunc(n):
29182917
self.assertIsNotNone(ex)
29192918
uops = get_opnames(ex)
29202919
self.assertIn("_BINARY_OP", uops)
2921-
=======
2920+
29222921
def test_binary_op_extend_float_long_add_refcount_elimination(self):
29232922
def testfunc(n):
29242923
a = 1.5
@@ -2933,9 +2932,6 @@ def testfunc(n):
29332932
self.assertIsNotNone(ex)
29342933
uops = get_opnames(ex)
29352934
self.assertIn("_BINARY_OP_EXTEND", uops)
2936-
>>>>>>> upstream/main
2937-
self.assertIn("_POP_TOP_NOP", uops)
2938-
self.assertLessEqual(count_ops(ex, "_POP_TOP"), 2)
29392935

29402936
def test_remove_guard_for_slice_list(self):
29412937
def f(n):

0 commit comments

Comments
 (0)