]> granicus.if.org Git - python/commitdiff
Use full package paths in imports.
authorBarry Warsaw <barry@python.org>
Tue, 23 Jul 2002 20:35:58 +0000 (20:35 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 23 Jul 2002 20:35:58 +0000 (20:35 +0000)
Lib/email/test/test_email_torture.py

index 38520013646e2dc8c4845d7986116a4e64724295..7a0bd466b904c2009d7eaaa9da056b3ea3287da6 100644 (file)
@@ -11,14 +11,9 @@ import os
 import unittest
 from cStringIO import StringIO
 from types import ListType
-from test_email import TestEmailBase
 
-try:
-    import test_support
-    TestSkipped = test_support.TestSkipped
-except ImportError:
-    test_support = None
-    TestSkipped = ImportError
+from email.test.test_email import TestEmailBase
+from test.test_support import TestSkipped
 
 import email
 from email import __file__ as testfile