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

Michael Howitz mh at gocept.com
Sun Dec 12 11:09:03 EST 2010


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

Changed:
  U   z3c.breadcrumb/trunk/CHANGES.txt
  U   z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py

-=-
Modified: z3c.breadcrumb/trunk/CHANGES.txt
===================================================================
--- z3c.breadcrumb/trunk/CHANGES.txt	2010-12-12 16:08:37 UTC (rev 118828)
+++ z3c.breadcrumb/trunk/CHANGES.txt	2010-12-12 16:09:03 UTC (rev 118829)
@@ -7,6 +7,8 @@
 
 - Added needed but not declated test dependency on ``zope.app.container``.
 
+- Using Python's ``doctest`` module instead of depreacted
+  ``zope.testing.doctest``.
 
 1.1.0 (2009-05-29)
 ------------------

Modified: z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py
===================================================================
--- z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py	2010-12-12 16:08:37 UTC (rev 118828)
+++ z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py	2010-12-12 16:09:03 UTC (rev 118829)
@@ -11,17 +11,11 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""
-$Id: __init__.py 70825 2006-10-20 01:34:05Z rogerineichen $
-"""
-__docformat__ = 'restructuredtext'
-
-import unittest
-
-from zope.testing import doctest
 from zope.app.testing import setup
 from zope.interface.verify import verifyObject
 from zope.publisher.browser import TestRequest
+import doctest
+import unittest
 
 
 def doctest_Breadcrumbs_interface():



More information about the checkins mailing list