Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7387:46f92ac4e170
- issue2551275 - Allow configuring max_children in roundup-server.
new -m and --max_children command line arguments and max_children
config file setting for roundup_server.py/roundup-server.
CHANGES.txt, admin_guide.txt, roundup-server.1 updated.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 23 May 2023 23:34:06 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
