Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6101:cb6df89af1c8
updated version check for Markdown install
| author | Christof Meerwald <cmeerw@cmeerw.org> |
|---|---|
| date | Tue, 25 Feb 2020 16:35:10 +0000 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
