Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 8351:e775cd258763
docs: fix canonical link for www.roundup-tracker.org index page
the index page canonical link was:
https://www...org/index.html
change the template so the canonical is set to
https://www...org/
as that is how it's listed by crawlers.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 02 Jul 2025 12:26:21 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
