mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Use full package paths in imports.
This commit is contained in:
parent
78e30fb32c
commit
9e4e050c59
1 changed files with 2 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue