SVN: zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/__init__.py removed unnecessarily delayed import
Christian Theune <[email protected]>
| Newsgroups | gmane.comp.web.zope.zope3.cvs |
|---|---|
| Message-ID | <20080503140907.734DB3998B__34262.4988909394$1209823803$gmane$org@mail.zope.org> |
Log message for revision 86216: removed unnecessarily delayed import Changed: U zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/__init__.py -=- Modified: zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/__init__.py =================================================================== --- zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/__init__.py 2008-05-03 14:08:12 UTC (rev 86215) +++ zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/__init__.py 2008-05-03 14:09:07 UTC (rev 86216) @@ -38,6 +38,7 @@ import types import unittest +from zope.testing import doctest from zope.testing.testrunner.formatter import OutputFormatter, ColorfulOutputFormatter from zope.testing.testrunner.formatter import terminal_has_colors @@ -2167,7 +2168,3 @@ # Test the testrunner ############################################################################### - -# Delay import to give main an opportunity to fix up the path if -# necessary -from zope.testing import doctest