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

Michael Howitz mh at gocept.com
Fri Mar 18 03:37:38 EDT 2011


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

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

-=-
Modified: zc.freeze/trunk/CHANGES.txt
===================================================================
--- zc.freeze/trunk/CHANGES.txt	2011-03-18 07:36:52 UTC (rev 121017)
+++ zc.freeze/trunk/CHANGES.txt	2011-03-18 07:37:37 UTC (rev 121018)
@@ -7,7 +7,10 @@
 
 * Updated tests to run with ZTK 1.0.
 
+* Using Python's ``doctest`` module instead of depreacted
+  ``zope.testing.doctest``.
 
+
 1.1
 ===
 

Modified: zc.freeze/trunk/src/zc/freeze/tests.py
===================================================================
--- zc.freeze/trunk/src/zc/freeze/tests.py	2011-03-18 07:36:52 UTC (rev 121017)
+++ zc.freeze/trunk/src/zc/freeze/tests.py	2011-03-18 07:37:37 UTC (rev 121018)
@@ -1,7 +1,7 @@
 from zope.app.container.tests.placelesssetup import PlacelessSetup
 from zope.app.testing import placelesssetup
 from zope.component import testing, eventtesting
-from zope.testing import doctest
+import doctest
 import unittest
 import zope.app.testing.functional
 import zope.testing.module



More information about the checkins mailing list