Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 6410:66ccddb034f2
Bug-fix in expression parser
Tried to get minimum of an empty list. Add a test for this.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Wed, 12 May 2021 13:32:18 +0200 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
