[Python-checkins] cpython: Add a __main__.py to test_email so it works with -m like it did before move.

r.david.murray python-checkins at python.org
Tue Mar 29 16:00:07 CEST 2011


http://hg.python.org/cpython/rev/7a8ada66c07d
changeset:   69037:7a8ada66c07d
parent:      69033:6a1ebd530b9e
user:        R David Murray <rdmurray at bitdance.com>
date:        Tue Mar 29 09:59:45 2011 -0400
summary:
  Add a __main__.py to test_email so it works with -m like it did before move.

files:
  Lib/test/test_email/__main__.py |  3 +++
  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
--- /dev/null
+++ b/Lib/test/test_email/__main__.py
@@ -0,0 +1,3 @@
+from test.test_email import test_main
+
+test_main()

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list