Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7241:78c3f4aced76
issue2551265 - deprecate SSHA password hash method
Users using SSHA passwords will have their passwords transprently
upgraded to PBKDF2 derived hash on next login.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 01 Apr 2023 20:48:02 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
