Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6252:35ccd6e56f4b
add uprev version of jquery, minimized. Sphinx is using 3.2.1 which has security issues. On my server it is using the version from _static.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 07 Aug 2020 00:18:48 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
