mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
GH-130903: typo in optimizer DSL for _GUARD_BOTH_UNICODE (#130904)
Typo introduced in gh-118910.
This commit is contained in:
parent
aeb2327386
commit
10cdd7f91f
2 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ dummy_func(void) {
|
||||||
REPLACE_OP(this_instr, _NOP, 0 ,0);
|
REPLACE_OP(this_instr, _NOP, 0 ,0);
|
||||||
}
|
}
|
||||||
sym_set_type(left, &PyUnicode_Type);
|
sym_set_type(left, &PyUnicode_Type);
|
||||||
sym_set_type(left, &PyUnicode_Type);
|
sym_set_type(right, &PyUnicode_Type);
|
||||||
}
|
}
|
||||||
|
|
||||||
op(_BINARY_OP, (left, right -- res)) {
|
op(_BINARY_OP, (left, right -- res)) {
|
||||||
|
|
2
Python/optimizer_cases.c.h
generated
2
Python/optimizer_cases.c.h
generated
|
@ -513,7 +513,7 @@
|
||||||
REPLACE_OP(this_instr, _NOP, 0 ,0);
|
REPLACE_OP(this_instr, _NOP, 0 ,0);
|
||||||
}
|
}
|
||||||
sym_set_type(left, &PyUnicode_Type);
|
sym_set_type(left, &PyUnicode_Type);
|
||||||
sym_set_type(left, &PyUnicode_Type);
|
sym_set_type(right, &PyUnicode_Type);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue