Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6679:358dda66e806
bump version to 2.2.0a0
Make sure the current code isn't deployed claiming its 2.1.0.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 17 May 2022 14:06:42 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
