diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-16 10:17:58 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-16 10:17:58 +0200 |
commit | 78779b765c2d7f89fab3868b77b6a6522c55ee4c (patch) | |
tree | 8df49348f2e40aeb09ab893822424a995f4764c9 /Python/symtable.c | |
parent | f3ba65bd7b8aee8b0351c6bf2f8fd000b165e7f5 (diff) | |
download | cpython-78779b765c2d7f89fab3868b77b6a6522c55ee4c.tar.gz |
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
The latter function is more readable, faster and doesn't raise exceptions.
Diffstat (limited to 'Python/symtable.c')
-rw-r--r-- | Python/symtable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index 1591a20f50..adca2dab67 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1472,7 +1472,7 @@ symtable_visit_expr(struct symtable *st, expr_ty e) /* Special-case super: it counts as a use of __class__ */ if (e->v.Name.ctx == Load && st->st_cur->ste_type == FunctionBlock && - !PyUnicode_CompareWithASCIIString(e->v.Name.id, "super")) { + _PyUnicode_EqualToASCIIString(e->v.Name.id, "super")) { if (!GET_IDENTIFIER(__class__) || !symtable_add_def(st, __class__, USE)) VISIT_QUIT(st, 0); @@ -1621,7 +1621,7 @@ symtable_visit_alias(struct symtable *st, alias_ty a) store_name = name; Py_INCREF(store_name); } - if (PyUnicode_CompareWithASCIIString(name, "*")) { + if (!_PyUnicode_EqualToASCIIString(name, "*")) { int r = symtable_add_def(st, store_name, DEF_IMPORT); Py_DECREF(store_name); return r; |