Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7023:ae6fa7b32e2d
flake8: E711 comparison to None should be 'if cond is not None:'
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 09 Oct 2022 17:40:14 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
