Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6206:b6f2cf872d2e
Expand sunset header explanation, fix formating missing `.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 26 Jun 2020 18:44:26 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
