Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7512:8d55398f976a
See if this fixes nightly python run.
Run is exiting with no useful output.
Set -xv to get feedback
Also escape newlines in all continuation lines for the pytest
invocation.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 25 Jun 2023 17:53:33 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
