diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-08-23 05:28:45 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-08-23 05:28:45 (GMT) |
commit | a48b5267456bbc7cd252c4a88f8785495fdbf586 (patch) | |
tree | 5276987cf6f61ab7e18c130b428cdf824adabdcb /Lib/test/autotest.py | |
parent | d49cbe10603c1b84a408c47f15131c44edad2f32 (diff) | |
download | cpython-a48b5267456bbc7cd252c4a88f8785495fdbf586.zip cpython-a48b5267456bbc7cd252c4a88f8785495fdbf586.tar.gz cpython-a48b5267456bbc7cd252c4a88f8785495fdbf586.tar.bz2 |
Rehabilitate autotest.py.
In README: Write up (Guido's) rules for intra-test imports; warn against
asserts; document test_support.use_large_resources.
Diffstat (limited to 'Lib/test/autotest.py')
-rw-r--r-- | Lib/test/autotest.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/autotest.py b/Lib/test/autotest.py index ba85a0d..57f371b 100644 --- a/Lib/test/autotest.py +++ b/Lib/test/autotest.py @@ -1,3 +1,6 @@ -# Backward compatibility -- you should use regrtest instead of this module. +# This should be equivalent to running regrtest.py from the cmdline. +# It can be especially handy if you're in an interactive shell, e.g., +# from test import autotest. + import regrtest regrtest.main() |