From 9e4e050c594cc6b56d683267b97b339a274bb31c Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 23 Jul 2002 20:35:58 +0000 Subject: Use full package paths in imports. --- Lib/email/test/test_email_torture.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Lib/email/test/test_email_torture.py b/Lib/email/test/test_email_torture.py index 3852001..7a0bd46 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 -- cgit v0.12