view roundup/anypy/my_input.py @ 7543:fc9daba984c0

- issue2551103 - add pragma 'display_protected' to roundup-admin. If setting is true, print protected attributes like id, activity, actor... when using display or specification subcommands.
author John Rouillard <rouilj@ieee.org>
date Thu, 13 Jul 2023 23:47:43 -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/