Mercurial > p > roundup > code
diff roundup/password.py @ 406:bdc2ea127ae9
Added module docstrings to all modules.
| author | Jürgen Hermann <jhermann@users.sourceforge.net> |
|---|---|
| date | Thu, 22 Nov 2001 15:46:42 +0000 |
| parents | d1fb3fcdb11b |
| children | 9b910e8d987d |
line wrap: on
line diff
--- a/roundup/password.py Thu Nov 22 15:09:40 2001 +0000 +++ b/roundup/password.py Thu Nov 22 15:46:42 2001 +0000 @@ -15,7 +15,11 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: password.py,v 1.3 2001-10-20 11:58:48 richard Exp $ +# $Id: password.py,v 1.4 2001-11-22 15:46:42 jhermann Exp $ + +__doc__ = """ +Password handling (encoding, decoding). +""" import sha, re @@ -113,6 +117,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.3 2001/10/20 11:58:48 richard +# Catch errors in login - no username or password supplied. +# Fixed editing of password (Password property type) thanks Roch'e Compaan. +# # Revision 1.2 2001/10/09 23:58:10 richard # Moved the data stringification up into the hyperdb.Class class' get, set # and create methods. This means that the data is also stringified for the
