[Zope3-checkins] SVN: Zope3/trunk/ add the __docformat__ to the
boilerplate so it does not need to be added
Fred L. Drake, Jr.
fdrake at gmail.com
Tue Sep 14 10:51:58 EDT 2004
Log message for revision 27517:
add the __docformat__ to the boilerplate so it does not need to be added
separately in the future
Changed:
U Zope3/trunk/dut.py
U Zope3/trunk/ft.py
U Zope3/trunk/ut.py
U Zope3/trunk/zpl.py
-=-
Modified: Zope3/trunk/dut.py
===================================================================
--- Zope3/trunk/dut.py 2004-09-13 19:31:20 UTC (rev 27516)
+++ Zope3/trunk/dut.py 2004-09-14 14:51:58 UTC (rev 27517)
@@ -18,6 +18,8 @@
import unittest
from zope.testing.doctestunit import DocTestSuite
+__docformat__ = "reStructuredText"
+
def test_xxx():
"""
"""
Modified: Zope3/trunk/ft.py
===================================================================
--- Zope3/trunk/ft.py 2004-09-13 19:31:20 UTC (rev 27516)
+++ Zope3/trunk/ft.py 2004-09-14 14:51:58 UTC (rev 27517)
@@ -20,6 +20,8 @@
import unittest
from zope.app.tests.functional import FunctionalTestCase
+__docformat__ = "reStructuredText"
+
# If you are writing a functional test that simulates browser requests, use
# BrowserTestCase instead of FunctionalTestCase
Modified: Zope3/trunk/ut.py
===================================================================
--- Zope3/trunk/ut.py 2004-09-13 19:31:20 UTC (rev 27516)
+++ Zope3/trunk/ut.py 2004-09-14 14:51:58 UTC (rev 27517)
@@ -19,6 +19,8 @@
"""
import unittest
+__docformat__ = "reStructuredText"
+
#############################################################################
# If your tests change any global registries, then uncomment the
# following import and include CleanUp as a base class of your
Modified: Zope3/trunk/zpl.py
===================================================================
--- Zope3/trunk/zpl.py 2004-09-13 19:31:20 UTC (rev 27516)
+++ Zope3/trunk/zpl.py 2004-09-14 14:51:58 UTC (rev 27517)
@@ -17,3 +17,5 @@
$Id$
"""
+__docformat__ = "reStructuredText"
+
More information about the Zope3-Checkins
mailing list