Fix typo in compile.c (GH-24812)

guranteed -> guaranteed
This commit is contained in:
Ikko Ashimine 2021-03-10 19:39:51 +09:00 committed by GitHub
parent 307745aa42
commit 57827f8754
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5754,7 +5754,7 @@ compiler_pattern_mapping(struct compiler *c, expr_ty p, pattern_context *pc)
asdl_expr_seq *keys = p->v.Dict.keys;
asdl_expr_seq *values = p->v.Dict.values;
Py_ssize_t size = asdl_seq_LEN(values);
// A starred pattern will be a keyless value. It is guranteed to be last:
// A starred pattern will be a keyless value. It is guaranteed to be last:
int star = size ? !asdl_seq_GET(keys, size - 1) : 0;
ADDOP(c, MATCH_MAPPING);
ADDOP_JUMP(c, POP_JUMP_IF_FALSE, fail_pop_1);