[Zope3-checkins] SVN: zope.testing/branches/regebro-py3-3rdtimelucky/src/zope/testing/doctest/__init__.py Fixed a missing import.

Lennart Regebro regebro at gmail.com
Tue Apr 27 14:35:22 EDT 2010


Log message for revision 111510:
  Fixed a missing import.
  

Changed:
  U   zope.testing/branches/regebro-py3-3rdtimelucky/src/zope/testing/doctest/__init__.py

-=-
Modified: zope.testing/branches/regebro-py3-3rdtimelucky/src/zope/testing/doctest/__init__.py
===================================================================
--- zope.testing/branches/regebro-py3-3rdtimelucky/src/zope/testing/doctest/__init__.py	2010-04-27 18:18:02 UTC (rev 111509)
+++ zope.testing/branches/regebro-py3-3rdtimelucky/src/zope/testing/doctest/__init__.py	2010-04-27 18:35:21 UTC (rev 111510)
@@ -35,6 +35,7 @@
     # 8. Unittest Support
     'DocTestSuite',
     'DocFileSuite',
+    'DocFileTest',
     'set_unittest_reportflags',
     # 9. Debugging Support
     'script_from_examples',
@@ -247,3 +248,4 @@
     
 doctest.DocTestCase.runTest = _patched_runTest
 from doctest import *
+from doctest import DocFileTest # Not in doctests.__all__ for some reason.



More information about the Zope3-Checkins mailing list