Made this a little more compatible w/ the sandbox version, which is

still needed to test the Python implementatino.
This commit is contained in:
Tim Peters 2002-12-16 21:12:37 +00:00
parent e820cb60a3
commit cfd4a8b639
1 changed files with 2 additions and 2 deletions

View File

@ -2086,7 +2086,7 @@ class TestDateTimeTZ(TestDateTime):
self.assertEqual(str(d), datestr + ' ' + tailstr)
def suite():
def test_suite():
allsuites = [unittest.makeSuite(klass, 'test')
for klass in (TestModule,
TestTZInfo,
@ -2105,7 +2105,7 @@ def test_main():
import gc
import sys
thesuite = suite()
thesuite = test_suite()
lastrc = None
while True:
test_support.run_suite(thesuite)