Mercurial > p > roundup > code
comparison roundup/password.py @ 5490:11a1afa3cba4
removed unused import of os module
| author | Christof Meerwald <cmeerw@cmeerw.org> |
|---|---|
| date | Sun, 05 Aug 2018 14:04:47 +0100 |
| parents | 52cb53eedf77 |
| children | 07abc8d36940 |
comparison
equal
deleted
inserted
replaced
| 5489:8a91503c44b2 | 5490:11a1afa3cba4 |
|---|---|
| 18 """Password handling (encoding, decoding). | 18 """Password handling (encoding, decoding). |
| 19 """ | 19 """ |
| 20 __docformat__ = 'restructuredtext' | 20 __docformat__ = 'restructuredtext' |
| 21 | 21 |
| 22 import re, string | 22 import re, string |
| 23 import os | |
| 24 from base64 import b64encode, b64decode | 23 from base64 import b64encode, b64decode |
| 25 from hashlib import md5, sha1 | 24 from hashlib import md5, sha1 |
| 26 | 25 |
| 27 from roundup.anypy.strings import us2s, b2s, s2b | 26 from roundup.anypy.strings import us2s, b2s, s2b |
| 28 import roundup.anypy.random_ as random_ | 27 import roundup.anypy.random_ as random_ |
