diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-04 22:27:16 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-04 22:27:16 -0500 |
commit | 4833c98f85c1ec06a7451f56e1bf3b1f9951da0b (patch) | |
tree | e5a269b8352911c3bf8f139c449ca72dd91f1973 /Python/_warnings.c | |
parent | 6f18b987823773cf78fe46a2f92add81b951d0d8 (diff) | |
download | cpython-git-4833c98f85c1ec06a7451f56e1bf3b1f9951da0b.tar.gz |
start out this branch always with filename NULL
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 6d621b8f7d..445ff6ba9e 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -514,7 +514,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, } else { const char *module_str = PyString_AsString(*module); - Py_XDECREF(*filename); + *filename = NULL; if (module_str && strcmp(module_str, "__main__") == 0) { PyObject *argv = PySys_GetObject("argv"); if (argv != NULL && PyList_Size(argv) > 0) { |