diff options
author | Jamie Phan <jamie@ordinarylab.dev> | 2025-03-06 22:11:08 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-06 12:11:08 +0100 |
commit | 10cdd7f91ff45737e409a2e2c58fd8a9aa7c5a16 (patch) | |
tree | da49474edd5f7bc7c3f61cdb6b6ddac47ade6c14 /Python/optimizer_cases.c.h | |
parent | aeb23273867b27818a3dabd5fca086a1a2e8d229 (diff) | |
download | cpython-10cdd7f91ff45737e409a2e2c58fd8a9aa7c5a16.tar.gz cpython-10cdd7f91ff45737e409a2e2c58fd8a9aa7c5a16.zip |
GH-130903: typo in optimizer DSL for _GUARD_BOTH_UNICODE (#130904)
Typo introduced in gh-118910.
Diffstat (limited to 'Python/optimizer_cases.c.h')
-rw-r--r-- | Python/optimizer_cases.c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 306599bea77..9f3fc052494 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -513,7 +513,7 @@ REPLACE_OP(this_instr, _NOP, 0 ,0); } sym_set_type(left, &PyUnicode_Type); - sym_set_type(left, &PyUnicode_Type); + sym_set_type(right, &PyUnicode_Type); break; } |