Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 8345:35fab0db52f5
docs(install): document how to install gpg 2.0
Add link in install doc to upgrading doc and document pip command there.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 25 Jun 2025 23:05:19 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
