diff options
| author | Hanno Schlichting <hanno@hannosch.eu> | 2010-04-30 20:33:17 +0000 |
|---|---|---|
| committer | Hanno Schlichting <hanno@hannosch.eu> | 2010-04-30 20:33:17 +0000 |
| commit | 81cb8930118f7d9325f3e78b169a76219a331758 (patch) | |
| tree | 868651d21241867f73290b1bb0abb79bece4452b | |
| parent | ea1a343823bc58b580e048735cc38631fc8282b1 (diff) | |
| download | zope-component-81cb8930118f7d9325f3e78b169a76219a331758.tar.gz | |
Prefer the standard libraries doctest module to the one from zope.testing.
| -rw-r--r-- | CHANGES.txt | 2 | ||||
| -rw-r--r-- | src/zope/component/tests.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 5ac65f4..953241b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,7 +4,7 @@ CHANGES 3.9.4 (unreleased) ================== -- ... +- Prefer the standard libraries doctest module to the one from zope.testing. 3.9.3 (2010-03-08) ================== diff --git a/src/zope/component/tests.py b/src/zope/component/tests.py index dea4dd3..2ac2c30 100644 --- a/src/zope/component/tests.py +++ b/src/zope/component/tests.py @@ -15,6 +15,8 @@ $Id$ """ + +import doctest import persistent import re import sys @@ -25,7 +27,7 @@ from cStringIO import StringIO from zope import interface, component from zope.interface.verify import verifyObject from zope.interface.interfaces import IInterface -from zope.testing import doctest, renormalizing +from zope.testing import renormalizing from zope.testing.testrunner.layer import UnitTests from zope.component.interfaces import ComponentLookupError |
