diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-04 00:43:09 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-04 00:43:09 (GMT) |
commit | b1b25f0ffd6c2d31cf21fa7128ff64c314c3cd2e (patch) | |
tree | 0227d262895e628d23cd1c000140d23600f01823 /Python/_warnings.c | |
parent | 7d10a2d88accf1a04cb90ceb991fb5cac0abb698 (diff) | |
download | cpython-b1b25f0ffd6c2d31cf21fa7128ff64c314c3cd2e.zip cpython-b1b25f0ffd6c2d31cf21fa7128ff64c314c3cd2e.tar.gz cpython-b1b25f0ffd6c2d31cf21fa7128ff64c314c3cd2e.tar.bz2 |
Issue #12467: warnings: fix a race condition if a warning is emitted at
shutdown, if globals()['__file__'] is None.
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 a797887..07fd683 100644 --- a/Python/_warnings.c +++ b/Python/_warnings.c @@ -496,7 +496,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, /* Setup filename. */ *filename = PyDict_GetItemString(globals, "__file__"); - if (*filename != NULL) { + if (*filename != NULL && PyUnicode_Check(*filename)) { Py_ssize_t len = PyUnicode_GetSize(*filename); Py_UNICODE *unicode = PyUnicode_AS_UNICODE(*filename); |