summaryrefslogtreecommitdiff
path: root/Python/_warnings.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-04-10 18:05:40 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-04-10 18:05:40 +0300
commit3099587c099191eccc737760a8d15c7fedcd8a40 (patch)
tree3d8ca632ccec29918d50f801767a8faa12badea5 /Python/_warnings.c
parent309662b1b04034c676351bf40b8266d5a61817a0 (diff)
downloadcpython-3099587c099191eccc737760a8d15c7fedcd8a40.tar.gz
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
in places where Py_DECREF was used.
Diffstat (limited to 'Python/_warnings.c')
-rw-r--r--Python/_warnings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c
index 78f532ecb4..978bad135c 100644
--- a/Python/_warnings.c
+++ b/Python/_warnings.c
@@ -680,7 +680,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
goto handle_error;
}
else if (!is_true) {
- Py_XSETREF(*filename, PyUnicode_FromString("__main__"));
+ Py_SETREF(*filename, PyUnicode_FromString("__main__"));
if (*filename == NULL)
goto handle_error;
}