Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 5634:cb4b232fcbaa
website: bump copyright to 2019
| author | Bernhard Reiter <bernhard@intevation.de> |
|---|---|
| date | Thu, 07 Mar 2019 15:32:25 +0100 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
