summaryrefslogtreecommitdiff
path: root/Lib/test/test_warnings.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-06 22:18:11 +0000
committerBenjamin Peterson <benjamin@python.org>2008-05-06 22:18:11 +0000
commitd29503291013b7dfd70522e776b0c244aff0a264 (patch)
tree4bcf1eea33328c03196b89d82fdaa47b8761dc99 /Lib/test/test_warnings.py
parentc730d5f7e5a6f83b7ac71bc2393d2c848b95f30b (diff)
downloadcpython-git-d29503291013b7dfd70522e776b0c244aff0a264.tar.gz
Fix logic error in Python/_warnings.c and add a test to verify
Diffstat (limited to 'Lib/test/test_warnings.py')
-rw-r--r--Lib/test/test_warnings.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_warnings.py b/Lib/test/test_warnings.py
index 1b5ee3291c..70d8c56150 100644
--- a/Lib/test/test_warnings.py
+++ b/Lib/test/test_warnings.py
@@ -388,6 +388,15 @@ class _WarningsTests(BaseTest):
result = stream.getvalue()
self.failUnless(text in result)
+ def test_showwarning_not_callable(self):
+ self.module.filterwarnings("always", category=UserWarning)
+ old_showwarning = self.module.showwarning
+ self.module.showwarning = 23
+ try:
+ self.assertRaises(TypeError, self.module.warn, "Warning!")
+ finally:
+ self.module.showwarning = old_showwarning
+
def test_show_warning_output(self):
# With showarning() missing, make sure that output is okay.
text = 'test show_warning'