Commit 6e605aa0 authored by Hanno Schlichting's avatar Hanno Schlichting

Use the doctest module from the standard library and no longer depend on zope.testing.

parent 5b7052b6
...@@ -4,6 +4,8 @@ Changelog ...@@ -4,6 +4,8 @@ Changelog
2.13.3 (unreleased) 2.13.3 (unreleased)
------------------- -------------------
- Use the doctest module from the standard library and no longer depend on
zope.testing.
2.13.2 (2010-04-04) 2.13.2 (2010-04-04)
------------------- -------------------
......
...@@ -36,7 +36,7 @@ setup(name='Acquisition', ...@@ -36,7 +36,7 @@ setup(name='Acquisition',
'_Acquisition.c')], '_Acquisition.c')],
include_dirs=['include', 'src']), include_dirs=['include', 'src']),
], ],
install_requires=['ExtensionClass', 'zope.interface', 'zope.testing'], install_requires=['ExtensionClass', 'zope.interface'],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
) )
...@@ -2436,7 +2436,7 @@ def test___parent__parent__circles(): ...@@ -2436,7 +2436,7 @@ def test___parent__parent__circles():
""" """
import unittest import unittest
from zope.testing.doctest import DocTestSuite, DocFileSuite from doctest import DocTestSuite, DocFileSuite
def test_suite(): def test_suite():
return unittest.TestSuite(( return unittest.TestSuite((
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment