summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_email
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-29 13:59:45 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-03-29 13:59:45 (GMT)
commit1ebdd714acdfab938cabd45924de4e26b88aec4d (patch)
tree5f8585eb9dda620865b4caf433834053f1856e68 /Lib/test/test_email
parent1df78c8e6e03b70a3ad3934355a85b622346087a (diff)
downloadcpython-1ebdd714acdfab938cabd45924de4e26b88aec4d.zip
cpython-1ebdd714acdfab938cabd45924de4e26b88aec4d.tar.gz
cpython-1ebdd714acdfab938cabd45924de4e26b88aec4d.tar.bz2
Add a __main__.py to test_email so it works with -m like it did before move.
Diffstat (limited to 'Lib/test/test_email')
-rw-r--r--Lib/test/test_email/__main__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_email/__main__.py b/Lib/test/test_email/__main__.py
new file mode 100644
index 0000000..98af9ec
--- /dev/null
+++ b/Lib/test/test_email/__main__.py
@@ -0,0 +1,3 @@
+from test.test_email import test_main
+
+test_main()