Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6088:00a24243887c
Remove redundant permission check
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Wed, 12 Feb 2020 16:00:59 +0100 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
