Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6591:feab8c878d08
Fix code formatting, add link for Configuring Compression.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 24 Jan 2022 21:29:44 -0500 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
