Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 8589:4b2e885ecc07
test: undo monkey patch at end of test
Dummy permisions check was leaking and breaking tests in
test_liveserver.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 20 Apr 2026 21:27:52 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
