1 2 3 4 5 6 7 8 9 10 11 12 13
"""Minimal prompt types for noninteractive read tests.""" class Prompts: def __init__(self, shell): self.shell = shell class Token: Prompt = "Prompt" PromptNum = "PromptNum" OutPrompt = "OutPrompt" OutPromptNum = "OutPromptNum"