Added some new tests and two new files for testing: test_types.py

(testing operations on built-in types) and autotest.py (automatic
regression testing).
This commit is contained in:
Guido van Rossum 1992-11-27 22:53:50 +00:00
parent d014ea6b5e
commit 85f1820ee1
6 changed files with 295 additions and 6 deletions

View file

@ -25,4 +25,8 @@ print 'test_exceptions'
unload('test_exceptions')
import test_exceptions
print 'test_types'
unload('test_types')
import test_types
print 'Passed all tests.'