Mercurial > p > roundup > code
comparison roundup/password.py @ 1090:9b910e8d987d
removed Log
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Sep 2002 00:19:55 +0000 |
| parents | bdc2ea127ae9 |
| children | 5c581b120738 |
comparison
equal
deleted
inserted
replaced
| 1089:43ab730ee194 | 1090:9b910e8d987d |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: password.py,v 1.4 2001-11-22 15:46:42 jhermann Exp $ | 18 # $Id: password.py,v 1.5 2002-09-10 00:18:20 richard Exp $ |
| 19 | 19 |
| 20 __doc__ = """ | 20 __doc__ = """ |
| 21 Password handling (encoding, decoding). | 21 Password handling (encoding, decoding). |
| 22 """ | 22 """ |
| 23 | 23 |
| 113 assert 'not sekrit' != p | 113 assert 'not sekrit' != p |
| 114 | 114 |
| 115 if __name__ == '__main__': | 115 if __name__ == '__main__': |
| 116 test() | 116 test() |
| 117 | 117 |
| 118 # | |
| 119 # $Log: not supported by cvs2svn $ | |
| 120 # Revision 1.3 2001/10/20 11:58:48 richard | |
| 121 # Catch errors in login - no username or password supplied. | |
| 122 # Fixed editing of password (Password property type) thanks Roch'e Compaan. | |
| 123 # | |
| 124 # Revision 1.2 2001/10/09 23:58:10 richard | |
| 125 # Moved the data stringification up into the hyperdb.Class class' get, set | |
| 126 # and create methods. This means that the data is also stringified for the | |
| 127 # journal call, and removes duplication of code from the backends. The | |
| 128 # backend code now only sees strings. | |
| 129 # | |
| 130 # Revision 1.1 2001/10/09 07:25:59 richard | |
| 131 # Added the Password property type. See "pydoc roundup.password" for | |
| 132 # implementation details. Have updated some of the documentation too. | |
| 133 # | |
| 134 # | |
| 135 # | |
| 136 # vim: set filetype=python ts=4 sw=4 et si | 118 # vim: set filetype=python ts=4 sw=4 et si |
