view roundup/anypy/my_input.py @ 5864:5e8e160fe2a0

Fix security checks for individual properties
author Ralf Schlatterbeck <rsc@runtux.com>
date Mon, 26 Aug 2019 08:15:02 +0200
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/