summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_warnings.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-04 01:05:37 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-04 01:05:37 (GMT)
commit65c153547ba6a41d11d3d04f84bacb5645a54e5e (patch)
tree5feee1947fdb96d6176861f201e03bd5c4036a45 /Lib/test/test_warnings.py
parent13502b19c64b2cd37b0b2b66dfcc26d0f028cd84 (diff)
downloadcpython-65c153547ba6a41d11d3d04f84bacb5645a54e5e.zip
cpython-65c153547ba6a41d11d3d04f84bacb5645a54e5e.tar.gz
cpython-65c153547ba6a41d11d3d04f84bacb5645a54e5e.tar.bz2
Issue #12467: warnings: fix a race condition if a warning is emitted at
shutdown, if globals()['__file__'] is None.
Diffstat (limited to 'Lib/test/test_warnings.py')
-rw-r--r--Lib/test/test_warnings.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py
index 5c4fa59..e502ed8 100644
--- a/Lib/test/test_warnings.py
+++ b/Lib/test/test_warnings.py
@@ -530,6 +530,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
+ self.module.warn('test', UserWarning)
+ finally:
+ globals_dict['__file__'] = oldfile
+
class WarningsDisplayTests(unittest.TestCase):