Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6251:b303db7f384f
Test designator code path
Added -d to a test to output designator rather than just id numbers.
Improves test coverage.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 05 Aug 2020 12:22:06 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
