[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Security - PrincipalRegistry.py:1.1.2.7

Jim Fulton jim@zope.com
Wed, 26 Dec 2001 15:28:08 -0500


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

Modified Files:
      Tag: Zope-3x-branch
	PrincipalRegistry.py 
Log Message:
Renamed clear to _clear for consistency.

Exported registry with less generic name.


=== Zope3/lib/python/Zope/App/Security/PrincipalRegistry.py 1.1.2.6 => 1.1.2.7 ===
         self.__principalsById[id]=p
 
-    def clear(self):
+    def _clear(self):
         self.__init__()
 
-globalRegistry=PrincipalRegistry()
+principalRegistry=PrincipalRegistry()
 
 class Principal: