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

Michael Howitz mh at gocept.com
Wed Oct 27 02:55:35 EDT 2010


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

Changed:
  U   z3c.soap/trunk/docs/HISTORY.txt
  U   z3c.soap/trunk/z3c/soap/ftests.py

-=-
Modified: z3c.soap/trunk/docs/HISTORY.txt
===================================================================
--- z3c.soap/trunk/docs/HISTORY.txt	2010-10-27 06:52:52 UTC (rev 117944)
+++ z3c.soap/trunk/docs/HISTORY.txt	2010-10-27 06:55:34 UTC (rev 117945)
@@ -4,7 +4,8 @@
 0.5.3 (unreleased)
 ------------------
 
-- Nothing changed yet.
+- Using Python's ``doctest`` module instead of depreacted
+  ``zope.testing.doctest``.
 
 
 0.5.2 (2010-05-05)

Modified: z3c.soap/trunk/z3c/soap/ftests.py
===================================================================
--- z3c.soap/trunk/z3c/soap/ftests.py	2010-10-27 06:52:52 UTC (rev 117944)
+++ z3c.soap/trunk/z3c/soap/ftests.py	2010-10-27 06:55:34 UTC (rev 117945)
@@ -17,10 +17,10 @@
 $Id$
 """
 
+import doctest
+import os
 import sys
-import os
 import zope.interface
-from zope.testing import doctest
 try:
     from zope.app.folder.folder import IFolder
 except:



More information about the checkins mailing list