view roundup/anypy/my_input.py @ 8500:b03160d46e9d

bug: don't reference vendored outside of anypy modules client.py was referencing the vendored.cgi module. This is wrong. It should pull the vendored.cgi module only via anypy.cgi_.
author John Rouillard <rouilj@ieee.org>
date Sun, 21 Dec 2025 23:59:08 -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/