Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6742:dcf34cc31438
update to GPGME_VERSION 1.17.1
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 29 Jun 2022 15:40:49 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
