summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_lltrace.py
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-01-06 14:47:57 (GMT)
committerGitHub <noreply@github.com>2023-01-06 14:47:57 (GMT)
commit78068126a1f2172ff61a0871ba43d8530bc73905 (patch)
treeaa42d4c6d64130587e2f62d61389496693de86e4 /Lib/test/test_lltrace.py
parent659c2607f5b44a8a18a0840d1ac39df8a3219dd5 (diff)
downloadcpython-78068126a1f2172ff61a0871ba43d8530bc73905.zip
cpython-78068126a1f2172ff61a0871ba43d8530bc73905.tar.gz
cpython-78068126a1f2172ff61a0871ba43d8530bc73905.tar.bz2
GH-99005: More intrinsics (GH-100774)
* Remove UNARY_POSITIVE, LIST_TO_TUPLE and ASYNC_GEN_WRAP, replacing them with intrinsics.
Diffstat (limited to 'Lib/test/test_lltrace.py')
-rw-r--r--Lib/test/test_lltrace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_lltrace.py b/Lib/test/test_lltrace.py
index 747666e..f638b64 100644
--- a/Lib/test/test_lltrace.py
+++ b/Lib/test/test_lltrace.py
@@ -54,7 +54,7 @@ class TestLLTrace(unittest.TestCase):
""")
self.assertIn("GET_ITER", stdout)
self.assertIn("FOR_ITER", stdout)
- self.assertIn("UNARY_POSITIVE", stdout)
+ self.assertIn("CALL_INTRINSIC_1", stdout)
self.assertIn("POP_TOP", stdout)
self.assertNotIn("BINARY_OP", stdout)
self.assertNotIn("UNARY_NEGATIVE", stdout)