]> granicus.if.org Git - python/commitdiff
Fix breakage from removing exceptions module
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 27 Feb 2007 18:58:52 +0000 (18:58 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 27 Feb 2007 18:58:52 +0000 (18:58 +0000)
Lib/test/test_structmembers.py

index 93dd2acaf40664b24c2d9a50efa5c6b934111630..0713b87ff5f21de1eeea6a087ad9de7e46ae883d 100644 (file)
@@ -4,7 +4,7 @@ from _testcapi import test_structmembersType, \
     INT_MAX, INT_MIN, UINT_MAX, \
     LONG_MAX, LONG_MIN, ULONG_MAX
 
-import warnings, exceptions, unittest, test.test_warnings
+import warnings, unittest, test.test_warnings
 from test import test_support
 
 ts=test_structmembersType(1,2,3,4,5,6,7,8,9.99999,10.1010101010)
@@ -42,7 +42,7 @@ class ReadWriteTests(unittest.TestCase):
 class TestWarnings(test.test_warnings.TestModule):
     def has_warned(self):
         self.assertEqual(test.test_warnings.msg.category,
-                         exceptions.RuntimeWarning.__name__)
+                         RuntimeWarning.__name__)
 
     def test_byte_max(self):
         ts.T_BYTE=CHAR_MAX+1