Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 5795:10747e4e4ec4
replace assertNotEquals with assertNotEqual
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 10 Jun 2019 21:28:51 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
