Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7741:e1dfd21f2252
feat: randomize creator of generated issues.
All the issues used to be created by admin. This randomly chooses
a user (except anonymous) to create an issue.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 19 Feb 2024 19:03:18 -0500 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
