[Python-checkins] python/dist/src/Lib/email/test test_email_torture.py,1.1,1.2

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Tue, 23 Jul 2002 13:36:00 -0700


Update of /cvsroot/python/python/dist/src/Lib/email/test
In directory usw-pr-cvs1:/tmp/cvs-serv25979/email/test

Modified Files:
	test_email_torture.py 
Log Message:
Use full package paths in imports.


Index: test_email_torture.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/test/test_email_torture.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_email_torture.py	19 Jul 2002 22:29:00 -0000	1.1
--- test_email_torture.py	23 Jul 2002 20:35:58 -0000	1.2
***************
*** 12,23 ****
  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
  
  import email
--- 12,18 ----
  from cStringIO import StringIO
  from types import ListType
  
! from email.test.test_email import TestEmailBase
! from test.test_support import TestSkipped
  
  import email