[Checkins] SVN: z3c.recipe.mkdir/trunk/ Using python's ``doctest`` module instead of depreacted ``zope.testing.doctest``.

Michael Howitz mh at gocept.com
Mon Sep 6 02:19:40 EDT 2010


Log message for revision 116205:
  Using python's ``doctest`` module instead of depreacted ``zope.testing.doctest``.
  

Changed:
  U   z3c.recipe.mkdir/trunk/CHANGES.txt
  U   z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/tests.py

-=-
Modified: z3c.recipe.mkdir/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.mkdir/trunk/CHANGES.txt	2010-09-06 06:18:16 UTC (rev 116204)
+++ z3c.recipe.mkdir/trunk/CHANGES.txt	2010-09-06 06:19:40 UTC (rev 116205)
@@ -7,7 +7,10 @@
 * Updated tests to run with `zc.buildout` 1.5, thus requiring at least this
   version.
 
+* Using python's ``doctest`` module instead of depreacted
+  ``zope.testing.doctest``.
 
+
 0.3.1 (2009-08-21)
 ==================
 

Modified: z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/tests.py
===================================================================
--- z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/tests.py	2010-09-06 06:18:16 UTC (rev 116204)
+++ z3c.recipe.mkdir/trunk/z3c/recipe/mkdir/tests.py	2010-09-06 06:19:40 UTC (rev 116205)
@@ -14,9 +14,10 @@
 
 import re
 import unittest
+import doctest
 
 import zc.buildout.testing
-from zope.testing import doctest, renormalizing
+from zope.testing import renormalizing
 
 
 def setUp(test):



More information about the checkins mailing list