[Zope3-checkins] CVS: Zope3/lib/python/Zope/Security - ISecurityManagement.py:1.3 SecurityManagement.py:1.4

Guido Wesdorp guido@infrae.com
Tue, 3 Dec 2002 08:37:27 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Security
In directory cvs.zope.org:/tmp/cvs-serv11770

Modified Files:
	ISecurityManagement.py SecurityManagement.py 
Log Message:
Fixed small typo


=== Zope3/lib/python/Zope/Security/ISecurityManagement.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/Security/ISecurityManagement.py:1.2	Mon Jun 10 19:29:34 2002
+++ Zope3/lib/python/Zope/Security/ISecurityManagement.py	Tue Dec  3 08:37:26 2002
@@ -48,6 +48,6 @@
         """
             Set the system default security policy. 
 
-            This method should only be caused by system startup code.
+            This method should only be called by system startup code.
             It should never, for example, be called during a web request.
         """


=== Zope3/lib/python/Zope/Security/SecurityManagement.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/Security/SecurityManagement.py:1.3	Tue Aug 13 13:46:12 2002
+++ Zope3/lib/python/Zope/Security/SecurityManagement.py	Tue Dec  3 08:37:26 2002
@@ -78,7 +78,7 @@
     if manager is None:
         newSecurityManager( None )
         manager=_managers.get( thread_id, None )
-        
+
     return manager
 
 def setSecurityPolicy( aSecurityPolicy ):
@@ -86,7 +86,7 @@
         Set the system default security policy, and return the previous
         value.
 
-        This method should only be caused by system startup code.
+        This method should only be called by system startup code.
         It should never, for example, be called during a web request.
     """
     return _setSecurityPolicy( aSecurityPolicy )