[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture/tests - Request.py:1.1.2.2 testResources.py:1.1.2.2 testService.py:1.1.2.2

Tres Seaver tseaver@zope.com
Tue, 12 Feb 2002 15:56:37 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/ComponentArchitecture/tests
In directory cvs.zope.org:/tmp/cvs-serv19744/Zope/ComponentArchitecture/tests

Modified Files:
      Tag: Zope-3x-branch
	Request.py testResources.py testService.py 
Log Message:


  - Normalize file headers.

  - Fix violations of "80 character" rule.


=== Zope3/lib/python/Zope/ComponentArchitecture/tests/Request.py 1.1.2.1 => 1.1.2.2 ===
 """
 
-Revision information: $Id$
+$Id$
 """
 
 class Request:


=== Zope3/lib/python/Zope/ComponentArchitecture/tests/testResources.py 1.1.2.1 => 1.1.2.2 ===
 # 
 ##############################################################################
+"""
+
+$Id$
+"""
 
 import unittest, sys
 
-from Zope.ComponentArchitecture import defineSkin, provideResource, getResource, _clear
+from Zope.ComponentArchitecture import defineSkin, provideResource
+from Zope.ComponentArchitecture import getResource, _clear
 from Zope.ComponentArchitecture import getRequestResource
 from Zope.ComponentArchitecture.Exceptions import ComponentLookupError 
 from Interface import Interface


=== Zope3/lib/python/Zope/ComponentArchitecture/tests/testService.py 1.1.2.1 => 1.1.2.2 ===
 # 
 ##############################################################################
+"""
 
-from Zope.ComponentArchitecture import defineService, provideService, getService
-from Zope.ComponentArchitecture import _clear
+$Id$
+"""
+
+from Zope.ComponentArchitecture import defineService, provideService
+from Zope.ComponentArchitecture import getService, _clear
 from Zope.ComponentArchitecture.Service import UndefinedService, InvalidService
 from Zope.Exceptions import DuplicationError
 from Interface import Interface