[Zope3-checkins] SVN: Zope3/trunk/src/zope/ Removed "Revision
information:" in module doc strings.
Stephan Richter
srichter at cosmos.phy.tufts.edu
Thu Jul 15 17:38:42 EDT 2004
Log message for revision 26560:
Removed "Revision information:" in module doc strings.
Changed:
U Zope3/trunk/src/zope/app/introspector/tests/test_introspector.py
U Zope3/trunk/src/zope/app/publisher/browser/tests/test_fileresource.py
U Zope3/trunk/src/zope/app/publisher/browser/tests/test_resources.py
U Zope3/trunk/src/zope/app/publisher/tests/test_fieldconverters.py
U Zope3/trunk/src/zope/app/traversing/tests/test_presentation.py
U Zope3/trunk/src/zope/component/tests/placelesssetup.py
U Zope3/trunk/src/zope/exceptions/tests/test_exceptionformatter.py
U Zope3/trunk/src/zope/importtool/app.py
U Zope3/trunk/src/zope/interface/common/tests/basemapping.py
U Zope3/trunk/src/zope/interface/document.py
U Zope3/trunk/src/zope/interface/tests/test_document.py
U Zope3/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py
U Zope3/trunk/src/zope/publisher/tests/test_publisher.py
U Zope3/trunk/src/zope/publisher/tests/test_requestdataproperty.py
U Zope3/trunk/src/zope/tal/taldefs.py
U Zope3/trunk/src/zope/tal/tests/test_xmlparser.py
U Zope3/trunk/src/zope/tal/xmlparser.py
U Zope3/trunk/src/zope/tales/tests/test_tales.py
U Zope3/trunk/src/zope/testing/doctest.py
-=-
Modified: Zope3/trunk/src/zope/app/introspector/tests/test_introspector.py
===================================================================
--- Zope3/trunk/src/zope/app/introspector/tests/test_introspector.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/app/introspector/tests/test_introspector.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,12 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Introspector Tests.
-Revision information:
$Id$
"""
-
from unittest import TestCase, TestSuite, main, makeSuite
from zope.app.introspector import Introspector
from zope.app.introspector.interfaces import IIntrospector
Modified: Zope3/trunk/src/zope/app/publisher/browser/tests/test_fileresource.py
===================================================================
--- Zope3/trunk/src/zope/app/publisher/browser/tests/test_fileresource.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/app/publisher/browser/tests/test_fileresource.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,26 +11,21 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""File-based browser resource tests.
-Revision information:
$Id$
"""
-
import os
-
from unittest import TestCase, main, makeSuite
+from zope.exceptions import NotFoundError
+from zope.i18n.interfaces import IUserPreferredCharsets
+from zope.proxy import removeAllProxies
from zope.security.checker import NamesChecker
-from zope.exceptions import NotFoundError
-
from zope.app.tests.placelesssetup import PlacelessSetup
from zope.app.tests import ztapi
-from zope.proxy import removeAllProxies
-from zope.i18n.interfaces import IUserPreferredCharsets
-
from zope.publisher.http import IHTTPRequest
from zope.publisher.http import HTTPCharsets
from zope.publisher.browser import TestRequest
Modified: Zope3/trunk/src/zope/app/publisher/browser/tests/test_resources.py
===================================================================
--- Zope3/trunk/src/zope/app/publisher/browser/tests/test_resources.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/app/publisher/browser/tests/test_resources.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,12 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Test Browser Resources
-Revision information:
$Id$
"""
-
from unittest import TestCase, main, makeSuite
from zope.app.tests import ztapi
from zope.app.tests.placelesssetup import PlacelessSetup
Modified: Zope3/trunk/src/zope/app/publisher/tests/test_fieldconverters.py
===================================================================
--- Zope3/trunk/src/zope/app/publisher/tests/test_fieldconverters.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/app/publisher/tests/test_fieldconverters.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,12 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Test of field converters.
-Revision information:
$Id$
"""
-
from unittest import TestCase, TestSuite, main, makeSuite
from datetime import datetime
Modified: Zope3/trunk/src/zope/app/traversing/tests/test_presentation.py
===================================================================
--- Zope3/trunk/src/zope/app/traversing/tests/test_presentation.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/app/traversing/tests/test_presentation.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,12 +11,10 @@
# FOR A PARTICULAR PURPOSE
#
##############################################################################
-"""
+"""Presentation Traverser Tests
-Revision information:
$Id$
"""
-
from unittest import TestCase, main, makeSuite
from zope.app.tests import ztapi
from zope.app.tests.placelesssetup import PlacelessSetup
Modified: Zope3/trunk/src/zope/component/tests/placelesssetup.py
===================================================================
--- Zope3/trunk/src/zope/component/tests/placelesssetup.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/component/tests/placelesssetup.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,18 +11,15 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
-Revision information:
+"""Placeless Test Setup
$Id$
"""
-
-# A mix-in class inheriting from CleanUp that also connects the CA services
-
from zope.testing.cleanup import CleanUp
from zope.component import getGlobalServices
from zope.component.servicenames import Adapters, Utilities, Presentation
+# A mix-in class inheriting from CleanUp that also connects the CA services
class PlacelessSetup(CleanUp):
def setUp(self):
Modified: Zope3/trunk/src/zope/exceptions/tests/test_exceptionformatter.py
===================================================================
--- Zope3/trunk/src/zope/exceptions/tests/test_exceptionformatter.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/exceptions/tests/test_exceptionformatter.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,20 +11,16 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
-ExceptionFormatter tests.
+"""ExceptionFormatter tests.
-Revision information:
$Id$
"""
-
+import sys
from unittest import TestCase, main, makeSuite
-from zope.testing.cleanup import CleanUp # Base class w registry cleanup
-import sys
from zope.exceptions.exceptionformatter import format_exception
+from zope.testing.cleanup import CleanUp # Base class w registry cleanup
-
def tb(as_html=0):
t, v, b = sys.exc_info()
try:
Modified: Zope3/trunk/src/zope/importtool/app.py
===================================================================
--- Zope3/trunk/src/zope/importtool/app.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/importtool/app.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -12,6 +12,8 @@
#
##############################################################################
"""Command-line tool to perform import analysis.
+
+$Id$
"""
import optparse
import os
Modified: Zope3/trunk/src/zope/interface/common/tests/basemapping.py
===================================================================
--- Zope3/trunk/src/zope/interface/common/tests/basemapping.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/interface/common/tests/basemapping.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,12 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Base Mapping tests
-Revision information:
$Id$
"""
-
from operator import __getitem__
def testIReadMapping(self, inst, state, absent):
Modified: Zope3/trunk/src/zope/interface/document.py
===================================================================
--- Zope3/trunk/src/zope/interface/document.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/interface/document.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -16,12 +16,10 @@
This module provides a function, asStructuredText, for rendering an
interface as structured text.
-Revision information:
$Id$
"""
-
-import zope.interface
from string import maketrans
+import zope.interface
def asStructuredText(I, munge=0):
""" Output structured text format. Note, this will wack any existing
Modified: Zope3/trunk/src/zope/interface/tests/test_document.py
===================================================================
--- Zope3/trunk/src/zope/interface/tests/test_document.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/interface/tests/test_document.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,16 +11,14 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Documentation tests.
-Revision information:
$Id$
"""
-
from unittest import TestCase, main, makeSuite
-from zope.interface import Interface
-from zope.interface.interface import Attribute
+from zope.interface import Interface, Attribute
+
class Test(TestCase):
def testBlech(self):
Modified: Zope3/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py
===================================================================
--- Zope3/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/publisher/tests/basetestiapplicationrequest.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,12 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""IApplicationRequest Base Test
-Revision information:
$Id$
"""
-
from zope.interface.verify import verifyObject
from zope.publisher.interfaces import IApplicationRequest
Modified: Zope3/trunk/src/zope/publisher/tests/test_publisher.py
===================================================================
--- Zope3/trunk/src/zope/publisher/tests/test_publisher.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/publisher/tests/test_publisher.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,11 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Test Publisher
$Id$
"""
-
import unittest
from zope.publisher.publish import publish
Modified: Zope3/trunk/src/zope/publisher/tests/test_requestdataproperty.py
===================================================================
--- Zope3/trunk/src/zope/publisher/tests/test_requestdataproperty.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/publisher/tests/test_requestdataproperty.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,12 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Request Data-Property Tests
-Revision information:
$Id$
"""
-
from unittest import TestCase, main, makeSuite
from zope.interface.common.tests.basemapping \
Modified: Zope3/trunk/src/zope/tal/taldefs.py
===================================================================
--- Zope3/trunk/src/zope/tal/taldefs.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/tal/taldefs.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,10 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""Common definitions used by TAL and METAL compilation and transformation.
+
+$Id$
"""
-Common definitions used by TAL and METAL compilation and transformation.
-"""
-
import re
from zope.tal.interfaces import ITALExpressionErrorInfo
from zope.interface import implements
Modified: Zope3/trunk/src/zope/tal/tests/test_xmlparser.py
===================================================================
--- Zope3/trunk/src/zope/tal/tests/test_xmlparser.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/tal/tests/test_xmlparser.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -12,8 +12,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""Tests for XMLParser.py."""
+"""Tests for XMLParser.py.
+$Id$
+"""
import sys
import unittest
Modified: Zope3/trunk/src/zope/tal/xmlparser.py
===================================================================
--- Zope3/trunk/src/zope/tal/xmlparser.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/tal/xmlparser.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -14,6 +14,8 @@
"""Generic Expat-based XML parser base class.
This creates a parser with namespace processing enabled.
+
+$Id$
"""
import logging
Modified: Zope3/trunk/src/zope/tales/tests/test_tales.py
===================================================================
--- Zope3/trunk/src/zope/tales/tests/test_tales.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/tales/tests/test_tales.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -11,6 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+"""TALES Tests
+
+$Id$
+"""
import unittest
from zope.tales import tales
Modified: Zope3/trunk/src/zope/testing/doctest.py
===================================================================
--- Zope3/trunk/src/zope/testing/doctest.py 2004-07-15 21:22:32 UTC (rev 26559)
+++ Zope3/trunk/src/zope/testing/doctest.py 2004-07-15 21:38:42 UTC (rev 26560)
@@ -274,6 +274,8 @@
60 passed and 0 failed.
Test passed.
+
+$Id$
"""
__all__ = [
More information about the Zope3-Checkins
mailing list