diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-04 03:19:29 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-04 03:19:29 (GMT) |
commit | 401d197657550f0ac155e96213b328a70724d2fa (patch) | |
tree | ec5dcc9898e465f8ac968d0801222d177ba5b0f0 /Python | |
parent | cc78c443f2e6d2b2d273195a6d5210ed9fc260ee (diff) | |
parent | a55007a620792a6dff946ee04b1295689e70b616 (diff) | |
download | cpython-401d197657550f0ac155e96213b328a70724d2fa.zip cpython-401d197657550f0ac155e96213b328a70724d2fa.tar.gz cpython-401d197657550f0ac155e96213b328a70724d2fa.tar.bz2 |
merge 3.2
Diffstat (limited to 'Python')
-rw-r--r-- | Python/_warnings.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c index 07fd683..99f6071 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -517,6 +517,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, } else { const char *module_str = _PyUnicode_AsString(*module); + Py_XDECREF(*filename); if (module_str == NULL) goto handle_error; if (strcmp(module_str, "__main__") == 0) { |