Mercurial > p > roundup > code
view roundup/anypy/my_input.py @ 7589:6894f152d49a
fix: issue2551278 - datetime.datetime.utcnow deprecation.
Original fix always failed the import and fell back to the exception case.
This method should work and test both code paths in datetime_.py.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 26 Jul 2023 23:59:35 -0400 |
| parents | 4cf48ff01e04 |
| children |
line wrap: on
line source
try: # Python 2. my_input = raw_input except NameError: # Python 3+. my_input = input
