]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #12467: warnings: fix a race condition if a warning is emitted at
authorVictor Stinner <victor.stinner@haypocalc.com>
Mon, 4 Jul 2011 00:43:09 +0000 (02:43 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Mon, 4 Jul 2011 00:43:09 +0000 (02:43 +0200)
shutdown, if globals()['__file__'] is None.

Lib/test/test_warnings.py
Misc/NEWS
Python/_warnings.c

index dbf30e985c0acbecfccf48b11b2ad3ce2d63e7a6..79be835bbdd992a5064d36510ab910b25ba4fbc7 100644 (file)
@@ -542,6 +542,18 @@ class _WarningsTests(BaseTest):
         assert expected_line
         self.assertEqual(second_line, expected_line)
 
+    def test_filename_none(self):
+        # issue #12467: race condition if a warning is emitted at shutdown
+        globals_dict = globals()
+        oldfile = globals_dict['__file__']
+        try:
+            with original_warnings.catch_warnings(module=self.module) as w:
+                self.module.filterwarnings("always", category=UserWarning)
+                globals_dict['__file__'] = None
+                original_warnings.warn('test', UserWarning)
+        finally:
+            globals_dict['__file__'] = oldfile
+
 
 class WarningsDisplayTests(unittest.TestCase):
 
index 52ae88883058d2fa37605a45af52e7c57433241d..1518bd1fb115f3211aebc43224ea29afc0de7eed 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #12467: warnings: fix a race condition if a warning is emitted at
+  shutdown, if globals()['__file__'] is None.
+
 
 What's New in Python 3.2.1 release candidate 2?
 ===============================================
index a797887b9c2dd68acddac5f542047190f21d1996..07fd683e53e8efb21a6d315364fc47e6f66fddfe 100644 (file)
@@ -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);