[Checkins] SVN: zc.monitorpdb/trunk/ Using Python's ``doctest`` module instead of deprecated ``zope.testing.doctest``.

Michael Howitz mh at gocept.com
Tue Mar 29 01:58:02 EDT 2011


Log message for revision 121151:
  Using Python's ``doctest`` module instead of deprecated ``zope.testing.doctest``.
  
  

Changed:
  U   zc.monitorpdb/trunk/CHANGES.txt
  U   zc.monitorpdb/trunk/src/zc/monitorpdb/tests.py

-=-
Modified: zc.monitorpdb/trunk/CHANGES.txt
===================================================================
--- zc.monitorpdb/trunk/CHANGES.txt	2011-03-29 05:56:35 UTC (rev 121150)
+++ zc.monitorpdb/trunk/CHANGES.txt	2011-03-29 05:58:02 UTC (rev 121151)
@@ -3,6 +3,9 @@
 
 - Fixed tests to run on different absolute paths.
 
+- Using Python's ``doctest`` module instead of deprecated
+  ``zope.testing.doctest``.
+
 1.0.0 (2009-10-30)
 ==================
 

Modified: zc.monitorpdb/trunk/src/zc/monitorpdb/tests.py
===================================================================
--- zc.monitorpdb/trunk/src/zc/monitorpdb/tests.py	2011-03-29 05:56:35 UTC (rev 121150)
+++ zc.monitorpdb/trunk/src/zc/monitorpdb/tests.py	2011-03-29 05:58:02 UTC (rev 121151)
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 
-from zope.testing import doctest
+import doctest
 import re
 import zope.testing.renormalizing
 



More information about the checkins mailing list