Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7445:abc2ec25b3d1
add target to push to sourceforge dev_docs area.
reqires ssh-agent with suitable keys.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 31 May 2023 23:11:17 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
