diff options
author | Barry Warsaw <barry@python.org> | 2002-07-19 22:44:23 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-07-19 22:44:23 (GMT) |
commit | d33d47401d96d3486f83f274e0318aaafd5a854d (patch) | |
tree | 6682f1c54bc4f71d57455464bf23831e9cfdfed5 /Lib/test | |
parent | 190390b02649b164489aaca1064bb33af2c9ee4f (diff) | |
download | cpython-d33d47401d96d3486f83f274e0318aaafd5a854d.zip cpython-d33d47401d96d3486f83f274e0318aaafd5a854d.tar.gz cpython-d33d47401d96d3486f83f274e0318aaafd5a854d.tar.bz2 |
Shut the test up and add a missing import
Diffstat (limited to 'Lib/test')
-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 9f17b75..5df5960 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 fa7f167..aadd537 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 |