Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 8497:9d1fde7a4bea
build: bump codecov/codecov-action from 5.5.1 to 5.5.2 (PR #76)
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 15 Dec 2025 09:45:32 -0500 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
