Lines Matching full:prompt
251 def _read_with_prompt(input, prompt):
252 """Print a prompt and then read a line of text.
255 @param prompt String to print to stderr prior to reading.
258 full_prompt = '%s> ' % prompt
266 Prompt the user to supply a board name, and read one line. If
297 Prompt the user to supply a build version, and read one line.
307 prompt = 'build version (optional)'
309 build = _read_with_prompt(input, prompt)
320 Prompt the user to supply a list of host names. Any number of
345 prompt = 'More hosts? [y/N]'
346 y_n = _read_with_prompt(input, prompt).lower() or 'no'
368 prompt = '%s build %s? [Y/n]' % (
370 y_n = _read_with_prompt(input, prompt).lower() or 'yes'