From 57c781048915e45d15eaa348c51ec01b12cc170a Mon Sep 17 00:00:00 2001 From: Hai Shi Date: Sat, 14 Mar 2020 21:40:58 +0800 Subject: [PATCH] bpo-39585: Delete a pending comment in _warning.c (GH-18414) --- Python/_warnings.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/_warnings.c b/Python/_warnings.c index 39f8033cd90..834ceb18459 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -491,8 +491,9 @@ show_warning(PyObject *filename, int lineno, PyObject *text, PyOS_snprintf(lineno_str, sizeof(lineno_str), ":%d: ", lineno); name = _PyObject_GetAttrId(category, &PyId___name__); - if (name == NULL) /* XXX Can an object lack a '__name__' attribute? */ + if (name == NULL) { goto error; + } f_stderr = _PySys_GetObjectId(&PyId_stderr); if (f_stderr == NULL) {