[Zope3-checkins] SVN: zope.testing/branches/regebro-python3-reloaded/s Python 3 support done.

Lennart Regebro regebro at gmail.com
Mon Dec 14 08:56:44 EST 2009


Log message for revision 106489:
  Python 3 support done.
  

Changed:
  U   zope.testing/branches/regebro-python3-reloaded/setup.py
  U   zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/tests.py

-=-
Modified: zope.testing/branches/regebro-python3-reloaded/setup.py
===================================================================
--- zope.testing/branches/regebro-python3-reloaded/setup.py	2009-12-14 13:55:43 UTC (rev 106488)
+++ zope.testing/branches/regebro-python3-reloaded/setup.py	2009-12-14 13:56:44 UTC (rev 106489)
@@ -174,7 +174,7 @@
 
 setup(
     name='zope.testing',
-    version = '3.8.4dev',
+    version = '3.9.0py3',
     url='http://pypi.python.org/pypi/zope.testing',
     license='ZPL 2.1',
     description='Zope testing framework, including the testrunner script.',

Modified: zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/tests.py
===================================================================
--- zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/tests.py	2009-12-14 13:55:43 UTC (rev 106488)
+++ zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/tests.py	2009-12-14 13:56:44 UTC (rev 106489)
@@ -144,25 +144,25 @@
 def test_suite():
     suites = [
         doctest.DocFileSuite(
-        #'testrunner-arguments.txt',
-        #'testrunner-coverage.txt',
-        #'testrunner-debugging-layer-setup.test',
-        #'testrunner-debugging.txt',
-        #'testrunner-edge-cases.txt',
-        #'testrunner-errors.txt',
-        #'testrunner-layers-buff.txt',
-        #'testrunner-layers-ntd.txt',
-        #'testrunner-layers.txt',
-        #'testrunner-layers-api.txt',
-        #'testrunner-progress.txt',
+        'testrunner-arguments.txt',
+        'testrunner-coverage.txt',
+        'testrunner-debugging-layer-setup.test',
+        'testrunner-debugging.txt',
+        'testrunner-edge-cases.txt',
+        'testrunner-errors.txt',
+        'testrunner-layers-buff.txt',
+        'testrunner-layers-ntd.txt',
+        'testrunner-layers.txt',
+        'testrunner-layers-api.txt',
+        'testrunner-progress.txt',
         'testrunner-colors.txt',
-        #'testrunner-simple.txt',
-        #'testrunner-test-selection.txt',
-        #'testrunner-verbose.txt',
-        #'testrunner-wo-source.txt',
-        #'testrunner-repeat.txt',
-        #'testrunner-gc.txt',
-        #'testrunner-knit.txt',
+        'testrunner-simple.txt',
+        'testrunner-test-selection.txt',
+        'testrunner-verbose.txt',
+        'testrunner-wo-source.txt',
+        'testrunner-repeat.txt',
+        'testrunner-gc.txt',
+        'testrunner-knit.txt',
         setUp=setUp, tearDown=tearDown,
         optionflags=doctest.ELLIPSIS+doctest.NORMALIZE_WHITESPACE,
         checker=checker),



More information about the Zope3-Checkins mailing list