mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)
This commit is contained in:
parent
6e3cc72afe
commit
c7f5708714
18 changed files with 562 additions and 758 deletions
|
@ -362,10 +362,6 @@ class EmbeddingTests(EmbeddingTestsMixin, unittest.TestCase):
|
|||
opname in opcode._specialized_instructions
|
||||
# Exclude superinstructions:
|
||||
and "__" not in opname
|
||||
# Exclude adaptive instructions:
|
||||
and not opname.endswith("_ADAPTIVE")
|
||||
# Exclude "quick" instructions:
|
||||
and not opname.endswith("_QUICK")
|
||||
):
|
||||
return True
|
||||
return False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue