Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 8105:e579aef218aa
fix: broken translatable error message template
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 07 Aug 2024 21:05:39 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
