mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
GH-111485: Test the new cases generator (GH-113252)
This commit is contained in:
parent
4a24bf9a13
commit
771903596b
8 changed files with 116 additions and 88 deletions
|
|
@ -444,7 +444,8 @@ def analyze_forest(forest: list[parser.AstNode]) -> Analysis:
|
|||
if target.text in instructions:
|
||||
instructions[target.text].is_target = True
|
||||
# Hack
|
||||
instructions["BINARY_OP_INPLACE_ADD_UNICODE"].family = families["BINARY_OP"]
|
||||
if "BINARY_OP_INPLACE_ADD_UNICODE" in instructions:
|
||||
instructions["BINARY_OP_INPLACE_ADD_UNICODE"].family = families["BINARY_OP"]
|
||||
return Analysis(instructions, uops, families, pseudos)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue