summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-16 15:41:11 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-16 15:41:11 +0200
commitfab6acd9f58584d2f4b361418e4d17f9c23db2f9 (patch)
treeaee38e54448d48d8652ab4c62792ca414d4653f3 /Python/pythonrun.c
parent3b73ea127892d0e1f9d8f12f88e4f9c0ba0b89b1 (diff)
parentf5894dd646f5e39918377b37b8c8694cebdca103 (diff)
downloadcpython-git-fab6acd9f58584d2f4b361418e4d17f9c23db2f9.tar.gz
Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.
The latter function is more readable, faster and doesn't raise exceptions. Based on patch by Xiang Zhang.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 1fc86c0a3e..5b1b78672b 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -751,7 +751,7 @@ print_exception(PyObject *f, PyObject *value)
err = PyFile_WriteString("<unknown>", f);
}
else {
- if (_PyUnicode_CompareWithId(moduleName, &PyId_builtins) != 0)
+ if (!_PyUnicode_EqualToASCIIId(moduleName, &PyId_builtins))
{
err = PyFile_WriteObject(moduleName, f, Py_PRINT_RAW);
err += PyFile_WriteString(".", f);