Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6146:01e9634b81a4
fixed string encoding of SSHA encoded passwords in Python 3
| author | Christof Meerwald <cmeerw@cmeerw.org> |
|---|---|
| date | Sun, 12 Apr 2020 21:02:57 +0100 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
