diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-04 22:28:00 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-04 22:28:00 -0500 |
commit | 9797e29f86eac1504a518ee5a4bf5b3b53c24c63 (patch) | |
tree | e5b59c8b6b0163d2cd3dddd90b0c6d029e82e18e /Python/_warnings.c | |
parent | 368ff10c4dc4730cd8f1ae8e2358af59ab0db96f (diff) | |
parent | bb4a747b695a3c1cce5257f40bc764fb9b44476a (diff) | |
download | cpython-git-9797e29f86eac1504a518ee5a4bf5b3b53c24c63.tar.gz |
merge 3.2
Diffstat (limited to 'Python/_warnings.c')
-rw-r--r-- | Python/_warnings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c index 99f6071a0c..615a2d3217 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -517,7 +517,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, } else { const char *module_str = _PyUnicode_AsString(*module); - Py_XDECREF(*filename); + *filename = NULL; if (module_str == NULL) goto handle_error; if (strcmp(module_str, "__main__") == 0) { |