Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7895:e13de119d070
test: try fixing exclusion. 3.13 not 3.13*???
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 20 Apr 2024 14:45:21 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
