diff options
author | Barry Warsaw <barry@python.org> | 2002-07-19 22:44:23 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-07-19 22:44:23 +0000 |
commit | d33d47401d96d3486f83f274e0318aaafd5a854d (patch) | |
tree | 6682f1c54bc4f71d57455464bf23831e9cfdfed5 | |
parent | 190390b02649b164489aaca1064bb33af2c9ee4f (diff) | |
download | cpython-git-d33d47401d96d3486f83f274e0318aaafd5a854d.tar.gz |
Shut the test up and add a missing import
-rw-r--r-- | Lib/test/test_email.py | 3 | ||||
-rw-r--r-- | Lib/test/test_email_codecs.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 9f17b75e0c..5df5960608 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -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 diff --git a/Lib/test/test_email_codecs.py b/Lib/test/test_email_codecs.py index fa7f16750a..aadd53738c 100644 --- a/Lib/test/test_email_codecs.py +++ b/Lib/test/test_email_codecs.py @@ -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 |