Skip to content

Commit

Permalink
Replace long-deprecated 'zope.testing.doctest' with stdlib's 'doctest'.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Jun 2, 2015
1 parent b269e92 commit 7575629
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,9 @@ Changes
4.1.0 (unreleased)
------------------

- Replace use of long-deprecated ``zope.testing.doctest`` with stdlib's
``doctest``.

- Add support for PyPy (PyPy3 support is blocked on a PyPy3-compatible
release of ``zodbpickle``).

Expand Down
3 changes: 2 additions & 1 deletion src/zope/catalog/tests.py
Expand Up @@ -16,9 +16,10 @@
Note that indexes &c already have test suites, we only have to check that
a catalog passes on events that it receives.
"""
import doctest
import re
import unittest
from zope.testing import doctest

from zope.interface import implementer, Interface
from zope.interface.verify import verifyObject
from BTrees.IFBTree import IFSet
Expand Down

0 comments on commit 7575629

Please sign in to comment.