summaryrefslogtreecommitdiff
path: root/Python/errors.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-16 15:40:39 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-16 15:40:39 +0200
commit5c2da4afb4eb80ca374451b71114cda455c9d11b (patch)
treebd91396bb27469aa217835643cdf08a3c4186e13 /Python/errors.c
parent78779b765c2d7f89fab3868b77b6a6522c55ee4c (diff)
downloadcpython-5c2da4afb4eb80ca374451b71114cda455c9d11b.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/errors.c')
-rw-r--r--Python/errors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c
index 6cc0c20cd5..dd01448518 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -934,7 +934,7 @@ PyErr_WriteUnraisable(PyObject *obj)
goto done;
}
else {
- if (_PyUnicode_CompareWithId(moduleName, &PyId_builtins) != 0) {
+ if (!_PyUnicode_EqualToASCIIId(moduleName, &PyId_builtins)) {
if (PyFile_WriteObject(moduleName, f, Py_PRINT_RAW) < 0)
goto done;
if (PyFile_WriteString(".", f) < 0)