summaryrefslogtreecommitdiffstats
path: root/Lib/email
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-07-23 20:35:58 (GMT)
committerBarry Warsaw <barry@python.org>2002-07-23 20:35:58 (GMT)
commit9e4e050c594cc6b56d683267b97b339a274bb31c (patch)
tree09c6f9d2676668f15476de58a79efd84ef13a7e9 /Lib/email
parent78e30fb32c0b250a835a4c0fa25dcac854ef3fae (diff)
downloadcpython-9e4e050c594cc6b56d683267b97b339a274bb31c.zip
cpython-9e4e050c594cc6b56d683267b97b339a274bb31c.tar.gz
cpython-9e4e050c594cc6b56d683267b97b339a274bb31c.tar.bz2
Use full package paths in imports.
Diffstat (limited to 'Lib/email')
-rw-r--r--Lib/email/test/test_email_torture.py9
1 files 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