diff options
author | Mark Shannon <mark@hotpy.org> | 2023-01-06 14:47:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-06 14:47:57 (GMT) |
commit | 78068126a1f2172ff61a0871ba43d8530bc73905 (patch) | |
tree | aa42d4c6d64130587e2f62d61389496693de86e4 /Lib/test/test_lltrace.py | |
parent | 659c2607f5b44a8a18a0840d1ac39df8a3219dd5 (diff) | |
download | cpython-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.py | 2 |
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) |