[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/pas/zodb.py Remove trailing whitespace.

Florent Guillaume fg at nuxeo.com
Mon Oct 11 07:16:37 EDT 2004


Log message for revision 27961:
  Remove trailing whitespace.
  


Changed:
  U   Zope3/trunk/src/zope/app/pas/zodb.py


-=-
Modified: Zope3/trunk/src/zope/app/pas/zodb.py
===================================================================
--- Zope3/trunk/src/zope/app/pas/zodb.py	2004-10-11 11:04:45 UTC (rev 27960)
+++ Zope3/trunk/src/zope/app/pas/zodb.py	2004-10-11 11:16:37 UTC (rev 27961)
@@ -109,7 +109,7 @@
         >>> pps[1] = ('foo', 'bar')
 
         Never expose the password!
-        
+
         >>> pps[1]
         ('foo', None)
         """
@@ -128,7 +128,7 @@
         >>> pps[1] = ('foo', 'bar')
 
         Never expose the password!
-        
+
         >>> pps.get(1)
         ('foo', None)
         """
@@ -192,7 +192,7 @@
         """See zope.app.pas.interfaces.IAuthenticationPlugin
 
         Create an authentication plugin and add a principal to it.
-        
+
         >>> pps = PersistentPrincipalStorage()
         >>> pps[1] = ('foo', 'bar')
 
@@ -215,7 +215,7 @@
         """
         if not isinstance(credentials, dict):
             return None
-        
+
         if not ('login' in credentials and 'password' in credentials):
             return None
 



More information about the Zope3-Checkins mailing list