Made this a little more compatible w/ the sandbox version, which is
still needed to test the Python implementatino.
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py
index 058fb90..cf6bd92 100644
--- a/Lib/test/test_datetime.py
+++ b/Lib/test/test_datetime.py
@@ -2086,7 +2086,7 @@
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 @@
import gc
import sys
- thesuite = suite()
+ thesuite = test_suite()
lastrc = None
while True:
test_support.run_suite(thesuite)