Skip to content

Commit

Permalink
Avoid depreacted zope.testing.doctest by using python's doctest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Jul 12, 2010
1 parent eb8dda5 commit c1e4b90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.txt
Expand Up @@ -11,6 +11,8 @@ CHANGES
- ``pos`` provide the positional arguments here
- ``kws`` provide the keyword arguments here

- Avoid depreacted `zope.testing.doctest` by using python's `doctest`.


0.3.1 (2009-12-26)
------------------
Expand Down
2 changes: 1 addition & 1 deletion src/z3c/testing/generation.py
Expand Up @@ -13,7 +13,7 @@
from ZODB.DB import DB
from ZODB.DemoStorage import DemoStorage

from zope.testing import doctest
import doctest
from zope.app.publication.zopepublication import ZopePublication
from zope.app.testing import setup
from zope.site.folder import rootFolder
Expand Down

0 comments on commit c1e4b90

Please sign in to comment.