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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e4e050c594cc6b56d683267b97b339a274bb31c;p=thirdparty%2FPython%2Fcpython.git 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 38520013646e..7a0bd466b904 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