[Zope3-checkins] CVS: Zope3/src/zope/publisher/tests - publication.py:1.1.2.2

Jim Fulton jim@zope.com
Tue, 24 Dec 2002 07:51:59 -0500


Update of /cvs-repository/Zope3/src/zope/publisher/tests
In directory cvs.zope.org:/tmp/cvs-serv1158/src/zope/publisher/tests

Modified Files:
      Tag: NameGeddon-branch
	publication.py 
Log Message:
Searched for and changed over 1200 references to Zope.something.

Most of these were either comments, doc strings, or permission ids.

Many were imports or ids in zcml.  (much zcml fixup is still needed.



=== Zope3/src/zope/publisher/tests/publication.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/publisher/tests/publication.py:1.1.2.1	Mon Dec 23 17:29:50 2002
+++ Zope3/src/zope/publisher/tests/publication.py	Tue Dec 24 07:51:28 2002
@@ -18,10 +18,6 @@
 
     __implements__ =  IPublication
 
-    ############################################################
-    # Implementation methods for interface
-    # Zope.Publisher.IPublication.
-
     def afterCall(self, request):
         '''See interface IPublication'''
         self._afterCall = getattr(self, '_afterCall', 0) + 1
@@ -58,8 +54,6 @@
         '''See interface IPublication'''
         self._callTraversalHooks = getattr(self, '_callTraversalHooks', 0) + 1
 
-    #
-    ############################################################
 
 class App: