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

Michael Howitz mh at gocept.com
Tue Mar 29 01:42:31 EDT 2011


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

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

-=-
Modified: zc.monitor/trunk/src/zc/monitor/CHANGES.txt
===================================================================
--- zc.monitor/trunk/src/zc/monitor/CHANGES.txt	2011-03-29 05:41:22 UTC (rev 121143)
+++ zc.monitor/trunk/src/zc/monitor/CHANGES.txt	2011-03-29 05:42:31 UTC (rev 121144)
@@ -6,8 +6,12 @@
 ------------------
 
 - Added an ``address`` option to ``start`` to be able to specify an adapter
-  to bind to
+  to bind to.
 
+- Using Python's ``doctest`` module instead of depreacted
+  ``zope.testing.doctest``.
+
+
 0.2.0 (2009-10-28)
 ------------------
 

Modified: zc.monitor/trunk/src/zc/monitor/tests.py
===================================================================
--- zc.monitor/trunk/src/zc/monitor/tests.py	2011-03-29 05:41:22 UTC (rev 121143)
+++ zc.monitor/trunk/src/zc/monitor/tests.py	2011-03-29 05:42:31 UTC (rev 121144)
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 
-from zope.testing import doctest
+import doctest
 
 def test_suite():
     return doctest.DocFileSuite(



More information about the checkins mailing list