Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 8120:d4fa7a9c3a21 permission-performance
Remove debug code
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Fri, 18 Oct 2024 16:54:24 +0200 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
