[Checkins] SVN: z3c.multifieldindex/trunk/ - Using python's ``doctest`` instead of deprecated ``zope.testing.doctest``.

Michael Howitz mh at gocept.com
Thu Jul 29 03:12:48 EDT 2010


Log message for revision 115193:
  - Using python's ``doctest`` instead of deprecated ``zope.testing.doctest``.
  
  

Changed:
  U   z3c.multifieldindex/trunk/CHANGES.txt
  U   z3c.multifieldindex/trunk/src/z3c/multifieldindex/tests.py

-=-
Modified: z3c.multifieldindex/trunk/CHANGES.txt
===================================================================
--- z3c.multifieldindex/trunk/CHANGES.txt	2010-07-29 06:58:30 UTC (rev 115192)
+++ z3c.multifieldindex/trunk/CHANGES.txt	2010-07-29 07:12:47 UTC (rev 115193)
@@ -5,7 +5,8 @@
 3.4.1 (unreleased)
 ------------------
 
-- ...
+- Using python's ``doctest`` instead of deprecated
+  ``zope.testing.doctest``.
 
 3.4.0 (15-10-2009)
 ------------------

Modified: z3c.multifieldindex/trunk/src/z3c/multifieldindex/tests.py
===================================================================
--- z3c.multifieldindex/trunk/src/z3c/multifieldindex/tests.py	2010-07-29 06:58:30 UTC (rev 115192)
+++ z3c.multifieldindex/trunk/src/z3c/multifieldindex/tests.py	2010-07-29 07:12:47 UTC (rev 115193)
@@ -16,7 +16,7 @@
 $Id$
 """
 import unittest
-from zope.testing import doctest
+import doctest
 
 def test_suite():
     return unittest.TestSuite(



More information about the checkins mailing list