Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6195:6e0c4d50b97e
Issue2551084 - Fix Inefficiency in roundup-admin
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 11 Jun 2020 23:10:25 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
