]> granicus.if.org Git - python/commitdiff
Shut the test up and add a missing import
authorBarry Warsaw <barry@python.org>
Fri, 19 Jul 2002 22:44:23 +0000 (22:44 +0000)
committerBarry Warsaw <barry@python.org>
Fri, 19 Jul 2002 22:44:23 +0000 (22:44 +0000)
Lib/test/test_email.py
Lib/test/test_email_codecs.py

index 9f17b75e0c7e01d5b79143bb20b421a52cca0bba..5df59606086a676d131f2743fcf02d64d647aa2b 100644 (file)
@@ -1,8 +1,9 @@
 # Copyright (C) 2001,2002 Python Software Foundation
 # email package unit tests
 
+import unittest
 # The specific tests now live in Lib/email/test
-from email.test.test_email import *
+from email.test.test_email import suite
 
 
 \f
index fa7f16750ab42fc02971e4a75271f55a6bcbb924..aadd53738c34217eb3bc7c446a25f85d51e60ce4 100644 (file)
@@ -1,8 +1,9 @@
 # Copyright (C) 2002 Python Software Foundation
 # email package unit tests for (optional) Asian codecs
 
+import unittest
 # The specific tests now live in Lib/email/test
-from email.test.test_email_codecs import *
+from email.test.test_email_codecs import suite
 
 
 \f