Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6572:2e568d6f72a4
issue2551169 - setup.py enters endless loop on gentoo linux python2 installation.
Recognized lib64 as a possible valid path.
Also exit when / is found.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 23 Dec 2021 16:00:21 -0500 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
