Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 5480:e8f6a1df73e3
add search page to jinja2 template
see issue2550901
| author | Christof Meerwald <cmeerw@cmeerw.org> |
|---|---|
| date | Tue, 31 Jul 2018 22:12:49 +0100 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
