view roundup/anypy/my_input.py @ 6921:3cfb8eccc86e

Remove sqlite setup/teardown methods does this fix the sqlite OperationalError failures?
author John Rouillard <rouilj@ieee.org>
date Tue, 06 Sep 2022 17:38:52 -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/