view roundup/anypy/my_input.py @ 5808:bab86c874efb

Fix: PendingDeprecationWarning: HMAC() without an explicit digestmod argument is deprecated. Set md5 explicitly.
author John Rouillard <rouilj@ieee.org>
date Wed, 12 Jun 2019 19:52:29 -0400
parents 4cf48ff01e04
children
line wrap: on
line source

try:
    # Python 2.
    my_input = raw_input
except NameError:
    # Python 3+.
    my_input = input

Roundup Issue Tracker: http://roundup-tracker.org/