From: Barry Warsaw Date: Tue, 23 Jul 2002 20:35:58 +0000 (+0000) Subject: Use full package paths in imports. X-Git-Tag: v2.3c1~4881 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e4e050c594cc6b56d683267b97b339a274bb31c;p=python Use full package paths in imports. --- diff --git a/Lib/email/test/test_email_torture.py b/Lib/email/test/test_email_torture.py index 3852001364..7a0bd466b9 100644 --- a/Lib/email/test/test_email_torture.py +++ b/Lib/email/test/test_email_torture.py @@ -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