Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7185:8e8d111fcdcd
Make in file tests work again. Also allow manual testing without overriding PBKDF rounds
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 26 Feb 2023 23:38:06 -0500 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
