[Zope3-checkins] SVN: zope.formlib/branches/nikhil_npy-2.5/src/zope/formlib/tests.py made zope.formlib work with Python2.5

nikhil n nikhil.n.n at gmail.com
Mon Aug 6 01:09:23 EDT 2007


Log message for revision 78617:
  made zope.formlib work with Python2.5

Changed:
  U   zope.formlib/branches/nikhil_npy-2.5/src/zope/formlib/tests.py

-=-
Modified: zope.formlib/branches/nikhil_npy-2.5/src/zope/formlib/tests.py
===================================================================
--- zope.formlib/branches/nikhil_npy-2.5/src/zope/formlib/tests.py	2007-08-06 03:37:17 UTC (rev 78616)
+++ zope.formlib/branches/nikhil_npy-2.5/src/zope/formlib/tests.py	2007-08-06 05:09:22 UTC (rev 78617)
@@ -484,7 +484,7 @@
     from zope.testing import doctest
     checker = renormalizing.RENormalizing([
       (re.compile(r"\[WidgetInputError\('form.summary', 'summary', A error message\)\]"),
-		  r"[<zope.app.form.interfaces.WidgetInputError instance at ...>]"),
+                  r"[<zope.app.form.interfaces.WidgetInputError instance at ...>]"),
       (re.compile(r"\[WidgetInputError\('summary', u'Summary', None\)\]"),
                   r"[<zope.app.form.interfaces.WidgetInputError instance at ...>]"),
       (re.compile(r" ValueError\('invalid literal for float\(\): (bob'|10,0'),\)"),
@@ -497,11 +497,11 @@
             'form.txt',
             setUp=formSetUp, tearDown=zope.component.testing.tearDown,
             optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS,
-	    checker=checker
+            checker=checker
             ),
         doctest.DocTestSuite(
             setUp=formSetUp, tearDown=zope.component.testing.tearDown,
-	    checker=checker
+            checker=checker
             ),
         doctest.DocFileSuite(
             'namedtemplate.txt',



More information about the Zope3-Checkins mailing list