Home | History | Annotate | Download | only in system

Lines Matching refs:raw_input

61     def prompt(cls, message, repeat=1, raw_input=raw_input):
65 response = raw_input(message)
70 return cls.prompt(message, repeat=repeat, raw_input=getpass.getpass)
73 def prompt_with_list(cls, list_title, list_items, can_choose_multiple=False, raw_input=raw_input):
83 response = cls.prompt("Enter one or more numbers (comma-separated), or \"all\": ", raw_input=raw_input)
93 result = int(cls.prompt("Enter a number: ", raw_input=raw_input)) - 1
129 def confirm(self, message=None, default=DEFAULT_YES, raw_input=raw_input):
133 response = raw_input("%s [%s]: " % (message, choice))