Mercurial > p > roundup > code
comparison roundup/password.py @ 7403:770fffae8167
Fix random_ import to use from import rather than import as
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 25 May 2023 09:38:39 -0400 |
| parents | 57f34b0b912c |
| children | a2ecc31c43ac |
comparison
equal
deleted
inserted
replaced
| 7402:bca4eaffb212 | 7403:770fffae8167 |
|---|---|
| 26 import warnings | 26 import warnings |
| 27 | 27 |
| 28 from base64 import b64encode, b64decode | 28 from base64 import b64encode, b64decode |
| 29 from hashlib import md5, sha1, sha512 | 29 from hashlib import md5, sha1, sha512 |
| 30 | 30 |
| 31 import roundup.anypy.random_ as random_ | 31 from roundup.anypy import random_ |
| 32 | 32 |
| 33 from roundup.anypy.strings import us2s, b2s, s2b | 33 from roundup.anypy.strings import us2s, b2s, s2b |
| 34 from roundup.exceptions import RoundupException | 34 from roundup.exceptions import RoundupException |
| 35 | 35 |
| 36 try: | 36 try: |
