view roundup/anypy/my_input.py @ 6561:01a5dd90286e

Remove unused report_stats I think it was supposed to be self.report_stats. But self.report_stats = False on initialization so the code wouldn't have done anything useful anyway.
author John Rouillard <rouilj@ieee.org>
date Mon, 13 Dec 2021 23:20:52 -0500
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/