Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 5806:abee2c2c822e
More cgi.escape/html.escape fixes.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 12 Jun 2019 19:17:37 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
