[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Security - IAuthenticationService.py:1.1.2.4

Guido van Rossum guido@python.org
Thu, 13 Dec 2001 16:49:46 -0500


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

Modified Files:
      Tag: Zope-3x-branch
	IAuthenticationService.py 
Log Message:
authenticate(): Change non-existent IUsernamePassword in example to
ILoginPassword.


=== Zope3/lib/python/Zope/App/Security/IAuthenticationService.py 1.1.2.3 => 1.1.2.4 ===
 
           getpw=getAdapter(request,
-                       IUsernamePassword, place=self)
-
+                       ILoginPassword, place=self)
 
         The place keyword argument is used to control
-        where the IUsernamePassword component is
+        where the ILoginPassword component is
         searched for. This is necessary because
         requests are placeless.
         """