示例#1
0
def ask(message, options):
    """Ask the message interactively, with the given possible responses"""
    while 1:
        if os.environ.get("PIP_NO_INPUT"):
            raise Exception("No input was expected ($PIP_NO_INPUT set); question: %s" % message)
        response = input(message)
        response = response.strip().lower()
        if response not in options:
            print("Your response (%r) was not one of the expected responses: " "%s" % (response, ", ".join(options)))
        else:
            return response
示例#2
0
def ask(message, options):
    # type: (str, Iterable[str]) -> str
    """Ask the message interactively, with the given possible responses"""
    while 1:
        _check_no_input(message)
        response = input(message)
        response = response.strip().lower()
        if response not in options:
            print('Your response (%r) was not one of the expected responses: '
                  '%s' % (response, ', '.join(options)))
        else:
            return response
示例#3
0
def ask(message, options):
    """Ask the message interactively, with the given possible responses"""
    while 1:
        if os.environ.get('PIP_NO_INPUT'):
            raise Exception(
                'No input was expected ($PIP_NO_INPUT set); question: %s' %
                message)
        response = input(message)
        response = response.strip().lower()
        if response not in options:
            print('Your response (%r) was not one of the expected responses: '
                  '%s' % (response, ', '.join(options)))
        else:
            return response
示例#4
0
文件: misc.py 项目: pypa/pip
def ask(message, options):
    # type: (str, Iterable[str]) -> str
    """Ask the message interactively, with the given possible responses"""
    while 1:
        _check_no_input(message)
        response = input(message)
        response = response.strip().lower()
        if response not in options:
            print(
                'Your response (%r) was not one of the expected responses: '
                '%s' % (response, ', '.join(options))
            )
        else:
            return response
示例#5
0
def ask(message, options):
    # type: (str, Iterable[str]) -> str
    """Ask the message interactively, with the given possible responses"""
    while 1:
        if os.environ.get("PIP_NO_INPUT"):
            raise Exception("No input was expected ($PIP_NO_INPUT set); question: %s" % message)
        response = input(message)
        response = response.strip().lower()
        if response not in options:
            print(
                "Your response (%r) was not one of the expected responses: "
                "%s" % (response, ", ".join(options))
            )
        else:
            return response
示例#6
0
文件: misc.py 项目: pfmoore/pip
def ask(message, options):
    # type: (str, Iterable[str]) -> str
    """Ask the message interactively, with the given possible responses"""
    while 1:
        if os.environ.get('PIP_NO_INPUT'):
            raise Exception(
                'No input was expected ($PIP_NO_INPUT set); question: %s' %
                message
            )
        response = input(message)
        response = response.strip().lower()
        if response not in options:
            print(
                'Your response (%r) was not one of the expected responses: '
                '%s' % (response, ', '.join(options))
            )
        else:
            return response
示例#7
0
def ask_input(message):
    # type: (str) -> str
    """Ask for input interactively."""
    _check_no_input(message)
    return input(message)
示例#8
0
文件: misc.py 项目: pypa/pip
def ask_input(message):
    # type: (str) -> str
    """Ask for input interactively."""
    _check_no_input(message)
    return input(message)