[Python-checkins] r87771 - python/branches/py3k/Lib/test/regrtest.py

georg.brandl python-checkins at python.org
Wed Jan 5 22:47:47 CET 2011


Author: georg.brandl
Date: Wed Jan  5 22:47:47 2011
New Revision: 87771

Log:
On Py3k, -tt and -3 are no-op and unsupported respectively.

Modified:
   python/branches/py3k/Lib/test/regrtest.py

Modified: python/branches/py3k/Lib/test/regrtest.py
==============================================================================
--- python/branches/py3k/Lib/test/regrtest.py	(original)
+++ python/branches/py3k/Lib/test/regrtest.py	Wed Jan  5 22:47:47 2011
@@ -3,7 +3,7 @@
 """
 Usage:
 
-python -m test.regrtest [options] [test_name1 [test_name2 ...]]
+python -m test [options] [test_name1 [test_name2 ...]]
 python path/to/Lib/test/regrtest.py [options] [test_name1 [test_name2 ...]]
 
 
@@ -14,7 +14,7 @@
 For more rigorous testing, it is useful to use the following
 command line:
 
-python -E -tt -Wd -3 -m test.regrtest [options] [test_name1 ...]
+python -E -Wd -m test [options] [test_name1 ...]
 
 
 Options:


More information about the Python-checkins mailing list