← eval5_submission_v1s

rich_3052

failed WRONG_FIX wrong_fix · 23 tool calls · 172 s · Textualize/rich

Task input

Case insensitive prompt choices

## Type of changes

- [ ] Bug fix
- [x] New feature
- [ ] Documentation / docstrings
- [ ] Tests
- [ ] Other

## Checklist

- [x] I've run the latest [black](https://github.com/psf/black) with default args on new code.
- [x] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
- [x] I've added tests for new code.
- [x] I accept that @willmcgugan may be pedantic in the code review.

## Description

Optional flag for `Prompt.ask` allowing case-insensitive responses. Just add `case_sensitive=False` to the command options:

```python
from rich.prompt import Prompt
name = Prompt.ask("Enter your name", choices=["Paul", "Jessica", "Duncan"], default="Paul", case_sensitive=False)
```

Now, it would accept "paul" or "Paul" as valid responses. Defaults to True, which is the usual result.


Tool calls (24)

#ToolArgumentsResult
1run_command
{
 "command": "grep -rn \"class Prompt\" rich | head -20"
}
{"status": "ok", "stdout": "rich/prompt.py:11:class PromptError(Exception):\nrich/prompt.py:30:class PromptBase(Generic[PromptType]):\nrich/prompt.py:286:class
full
{"status": "ok", "stdout": "rich/prompt.py:11:class PromptError(Exception):\nrich/prompt.py:30:class PromptBase(Generic[PromptType]):\nrich/prompt.py:286:class Prompt(PromptBase[str]):\n", "stderr": "", "exit_code": 0}
2read_file
{
 "filepath": "rich/prompt.py",
 "start_line": "286"
}
{"status": "error", "error_type": "FileReadError", "error_message": "'>' not supported between instances of 'int' and 'str'"}
full
{"status": "error", "error_type": "FileReadError", "error_message": "'>' not supported between instances of 'int' and 'str'"}
3read_file
{
 "filepath": "rich/prompt.py"
}
{"status": "ok", "filepath": "rich/prompt.py", "content": "from typing import Any, Generic, List, Optional, TextIO, TypeVar, Union, overload\n\nfrom . import ge
full
{"status": "ok", "filepath": "rich/prompt.py", "content": "from typing import Any, Generic, List, Optional, TextIO, TypeVar, Union, overload\n\nfrom . import get_console\nfrom .console import Console\nfrom .text import Text, TextType\n\nPromptType = TypeVar(\"PromptType\")\nDefaultType = TypeVar(\"DefaultType\")\n\n\nclass PromptError(Exception):\n    \"\"\"Exception base class for prompt related errors.\"\"\"\n\n\nclass InvalidResponse(PromptError):\n    \"\"\"Exception to indicate a response was invalid. Raise this within process_response() to indicate an error\n    and provide an error message.\n\n    Args:\n        message (Union[str, Text]): Error message.\n    \"\"\"\n\n    def __init__(self, message: TextType) -> None:\n        self.message = message\n\n    def __rich__(self) -> TextType:\n        return self.message\n\n\nclass PromptBase(Generic[PromptType]):\n    \"\"\"Ask the user for input until a valid response is received. This is the base class, see one of\n    the concrete classes for examples.\n\n    Args:\n        prompt (TextType, optional): Prompt text. Defaults to \"\".\n        console (Console, optional): A Console instance or None to use global console. Defaults to None.\n        password (bool, optional): Enable password input. Defaults to False.\n        choices (List[str], optional): A list of valid choices. Defaults to None.\n        show_default (bool, optional): Show default in prompt. Defaults to True.\n        show_choices (bool, optional): Show choices in prompt. Defaults to True.\n    \"\"\"\n\n    response_type: type = str\n\n    validate_error_message = \"[prompt.invalid]Please enter a valid value\"\n    illegal_choice_message = (\n        \"[prompt.invalid.choice]Please select one of the available options\"\n    )\n    prompt_suffix = \": \"\n\n    choices: Optional[List[str]] = None\n\n    def __init__(\n        self,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool
4read_file
{
 "filepath": "rich/prompt.py",
 "start_line": "151"
}
{"status": "error", "error_type": "FileReadError", "error_message": "'>' not supported between instances of 'int' and 'str'"}
full
{"status": "error", "error_type": "FileReadError", "error_message": "'>' not supported between instances of 'int' and 'str'"}
5run_command
{
 "command": "head -n 376 rich/prompt.py | tail -n 225"
}
{"status": "ok", "stdout": " return Text(f\"({default})\", \"prompt.default\")\n\n def make_prompt(self, default: DefaultType) -> Text:\n \"\"\"Make prompt text
full
{"status": "ok", "stdout": "        return Text(f\"({default})\", \"prompt.default\")\n\n    def make_prompt(self, default: DefaultType) -> Text:\n        \"\"\"Make prompt text.\n\n        Args:\n            default (DefaultType): Default value.\n\n        Returns:\n            Text: Text to display in prompt.\n        \"\"\"\n        prompt = self.prompt.copy()\n        prompt.end = \"\"\n\n        if self.show_choices and self.choices:\n            _choices = \"/\".join(self.choices)\n            choices = f\"[{_choices}]\"\n            prompt.append(\" \")\n            prompt.append(choices, \"prompt.choices\")\n\n        if (\n            default != ...\n            and self.show_default\n            and isinstance(default, (str, self.response_type))\n        ):\n            prompt.append(\" \")\n            _default = self.render_default(default)\n            prompt.append(_default)\n\n        prompt.append(self.prompt_suffix)\n\n        return prompt\n\n    @classmethod\n    def get_input(\n        cls,\n        console: Console,\n        prompt: TextType,\n        password: bool,\n        stream: Optional[TextIO] = None,\n    ) -> str:\n        \"\"\"Get input from user.\n\n        Args:\n            console (Console): Console instance.\n            prompt (TextType): Prompt text.\n            password (bool): Enable password entry.\n\n        Returns:\n            str: String from user.\n        \"\"\"\n        return console.input(prompt, password=password, stream=stream)\n\n    def check_choice(self, value: str) -> bool:\n        \"\"\"Check value is in the list of valid choices.\n\n        Args:\n            value (str): Value entered by user.\n\n        Returns:\n            bool: True if choice was valid, otherwise False.\n        \"\"\"\n        assert self.choices is not None\n        return value.strip() in self.choices\n\n    def process_response(self, value: str) -> PromptType:\n        \"\"\"Process response from user, convert to prompt type.\n\n
6run_command
{
 "command": "grep -n \"def __init__(\" rich/prompt.py"
}
{"status": "ok", "stdout": "23: def __init__(self, message: TextType) -> None:\n53: def __init__(\n", "stderr": "", "exit_code": 0}
full
{"status": "ok", "stdout": "23:    def __init__(self, message: TextType) -> None:\n53:    def __init__(\n", "stderr": "", "exit_code": 0}
7read_file
{
 "filepath": "rich/prompt.py",
 "start_line": "53"
}
{"status": "error", "error_type": "FileReadError", "error_message": "'>' not supported between instances of 'int' and 'str'"}
full
{"status": "error", "error_type": "FileReadError", "error_message": "'>' not supported between instances of 'int' and 'str'"}
8run_command
{
 "command": "sed -n '53,100p' rich/prompt.py"
}
{"status": "ok", "stdout": " def __init__(\n self,\n prompt: TextType = \"\",\n *,\n console: Optional[Console] = None,\n password: bool = False,\n choices: Opt
full
{"status": "ok", "stdout": "    def __init__(\n        self,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n    ) -> None:\n        self.console = console or get_console()\n        self.prompt = (\n            Text.from_markup(prompt, style=\"prompt\")\n            if isinstance(prompt, str)\n            else prompt\n        )\n        self.password = password\n        if choices is not None:\n            self.choices = choices\n        self.show_default = show_default\n        self.show_choices = show_choices\n\n    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        default: DefaultType,\n        stream: Optional[TextIO] = None,\n    ) -> Union[DefaultType, PromptType]:\n        ...\n\n    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n", "stderr": "", "exit_code": 0}
9run_command
{
 "command": "sed -n '70,120p' rich/prompt.py"
}
{"status": "ok", "stdout": " if choices is not None:\n self.choices = choices\n self.show_default = show_default\n self.show_choices = show_choices\n\n @classme
full
{"status": "ok", "stdout": "        if choices is not None:\n            self.choices = choices\n        self.show_default = show_default\n        self.show_choices = show_choices\n\n    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        default: DefaultType,\n        stream: Optional[TextIO] = None,\n    ) -> Union[DefaultType, PromptType]:\n        ...\n\n    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        stream: Optional[TextIO] = None,\n    ) -> PromptType:\n        ...\n\n    @classmethod\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        default: Any = ...,\n        stream: Optional[TextIO] = None,\n    ) -> Any:\n        \"\"\"Shortcut to construct and run a prompt loop and return the result.\n\n", "stderr": "", "exit_code": 0}
10run_command
{
 "command": "sed -n '120,150p' rich/prompt.py"
}
{"status": "ok", "stdout": "\n Example:\n >>> filename = Prompt.ask(\"Enter a filename\")\n\n Args:\n prompt (TextType, optional): Prompt text. Defaults to \"\"
full
{"status": "ok", "stdout": "\n        Example:\n            >>> filename = Prompt.ask(\"Enter a filename\")\n\n        Args:\n            prompt (TextType, optional): Prompt text. Defaults to \"\".\n            console (Console, optional): A Console instance or None to use global console. Defaults to None.\n            password (bool, optional): Enable password input. Defaults to False.\n            choices (List[str], optional): A list of valid choices. Defaults to None.\n            show_default (bool, optional): Show default in prompt. Defaults to True.\n            show_choices (bool, optional): Show choices in prompt. Defaults to True.\n            stream (TextIO, optional): Optional text file open for reading to get input. Defaults to None.\n        \"\"\"\n        _prompt = cls(\n            prompt,\n            console=console,\n            password=password,\n            choices=choices,\n            show_default=show_default,\n            show_choices=show_choices,\n        )\n        return _prompt(default=default, stream=stream)\n\n    def render_default(self, default: DefaultType) -> Text:\n        \"\"\"Turn the supplied default in to a Text instance.\n\n        Args:\n            default (DefaultType): Default value.\n\n        Returns:\n            Text: Text containing rendering of default value.\n", "stderr": "", "exit_code": 0}
11run_command
{
 "command": "sed -n '200,250p' rich/prompt.py"
}
{"status": "ok", "stdout": " Returns:\n str: String from user.\n \"\"\"\n return console.input(prompt, password=password, stream=stream)\n\n def check_choice(se
full
{"status": "ok", "stdout": "        Returns:\n            str: String from user.\n        \"\"\"\n        return console.input(prompt, password=password, stream=stream)\n\n    def check_choice(self, value: str) -> bool:\n        \"\"\"Check value is in the list of valid choices.\n\n        Args:\n            value (str): Value entered by user.\n\n        Returns:\n            bool: True if choice was valid, otherwise False.\n        \"\"\"\n        assert self.choices is not None\n        return value.strip() in self.choices\n\n    def process_response(self, value: str) -> PromptType:\n        \"\"\"Process response from user, convert to prompt type.\n\n        Args:\n            value (str): String typed by user.\n\n        Raises:\n            InvalidResponse: If ``value`` is invalid.\n\n        Returns:\n            PromptType: The value to be returned from ask method.\n        \"\"\"\n        value = value.strip()\n        try:\n            return_value: PromptType = self.response_type(value)\n        except ValueError:\n            raise InvalidResponse(self.validate_error_message)\n\n        if self.choices is not None and not self.check_choice(value):\n            raise InvalidResponse(self.illegal_choice_message)\n\n        return return_value\n\n    def on_validate_error(self, value: str, error: InvalidResponse) -> None:\n        \"\"\"Called to handle validation error.\n\n        Args:\n            value (str): String entered by user.\n            error (InvalidResponse): Exception instance the initiated the error.\n        \"\"\"\n        self.console.print(error)\n\n    def pre_prompt(self) -> None:\n        \"\"\"Hook to display something before the prompt.\"\"\"\n", "stderr": "", "exit_code": 0}
12run_command
{
 "command": "python3 -c \"from rich.prompt import Prompt; import unittest; from unittest.mock import patch; class TestPrompt(unittest.TestCase): @patch('rich.console.Console.input') def test_case_insensitive(self, mock_input): mock_input.return_value = 'paul'; result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False); self.assertEqual(result, 'paul'); unittest.main(argv=[''], exit=False)\""
}
{"status": "error", "error_type": "CommandError", "error_message": " File \"<string>\", line 1\n from rich.prompt import Prompt; import unittest; from unittest.
full
{"status": "error", "error_type": "CommandError", "error_message": "  File \"<string>\", line 1\n    from rich.prompt import Prompt; import unittest; from unittest.mock import patch; class TestPrompt(unittest.TestCase): @patch('rich.console.Console.input') def test_case_insensitive(self, mock_input): mock_input.return_value = 'paul'; result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False); self.assertEqual(result, 'paul'); unittest.main(argv=[''], exit=False)\n                                                                                      ^^^^^\nSyntaxError: invalid syntax\n", "details": {"stdout": "", "stderr": "  File \"<string>\", line 1\n    from rich.prompt import Prompt; import unittest; from unittest.mock import patch; class TestPrompt(unittest.TestCase): @patch('rich.console.Console.input') def test_case_insensitive(self, mock_input): mock_input.return_value = 'paul'; result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False); self.assertEqual(result, 'paul'); unittest.main(argv=[''], exit=False)\n                                                                                      ^^^^^\nSyntaxError: invalid syntax\n", "exit_code": 1}}
13run_command
{
 "command": "python3 -c \"from rich.prompt import Prompt; print(Prompt.ask('Name', choices=['Paul'], case_sensitive=False))\""
}
{"status": "error", "error_type": "CommandError", "error_message": "Traceback (most recent call last):\n File \"<string>\", line 1, in <module>\n from rich.prom
full
{"status": "error", "error_type": "CommandError", "error_message": "Traceback (most recent call last):\n  File \"<string>\", line 1, in <module>\n    from rich.prompt import Prompt; print(Prompt.ask('Name', choices=['Paul'], case_sensitive=False))\n                                          ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nTypeError: PromptBase.ask() got an unexpected keyword argument 'case_sensitive'\n", "details": {"stdout": "", "stderr": "Traceback (most recent call last):\n  File \"<string>\", line 1, in <module>\n    from rich.prompt import Prompt; print(Prompt.ask('Name', choices=['Paul'], case_sensitive=False))\n                                          ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nTypeError: PromptBase.ask() got an unexpected keyword argument 'case_sensitive'\n", "exit_code": 1}}
14edit_file
{
 "filepath": "rich/prompt.py",
 "new_string": "    def __init__(\n        self,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        case_sensitive: bool = True,\n    ) -> None:\n        self.console = console or get_console()\n        self.prompt = (\n            Text.from_markup(prompt, style=\"prompt\")\n            if isinstance(prompt, str)\n            else prompt\n        )\n        self.password = password\n        if choices is not None:\n            self.choices = choices\n        self.show_default = show_default\n        self.show_choices = show_choices\n        self.case_sensitive = case_sensitive",
 "old_string": "    def __init__(\n        self,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n    ) -> None:\n        self.console = console or get_console()\n        self.prompt = (\n            Text.from_markup(prompt, style=\"prompt\")\n            if isinstance(prompt, str)\n            else prompt\n        )\n        self.password = password\n        if choices is not None:\n            self.choices = choices\n        self.show_default = show_default\n        self.show_choices = show_choices"
}
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -59,6 +59,7 @@\n c
full
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -59,6 +59,7 @@\n         choices: Optional[List[str]] = None,\n         show_default: bool = True,\n         show_choices: bool = True,\n+        case_sensitive: bool = True,\n     ) -> None:\n         self.console = console or get_console()\n         self.prompt = (\n@@ -71,6 +72,7 @@\n             self.choices = choices\n         self.show_default = show_default\n         self.show_choices = show_choices\n+        self.case_sensitive = case_sensitive\n \n     @classmethod\n     @overload\n", "is_truncated": false}
15edit_file
{
 "filepath": "rich/prompt.py",
 "new_string": "    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        case_sensitive: bool = True,\n        default: DefaultType,\n        stream: Optional[TextIO] = None,\n    ) -> Union[DefaultType, PromptType]:\n        ...",
 "old_string": "    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        default: DefaultType,\n        stream: Optional[TextIO] = None,\n    ) -> Union[DefaultType, PromptType]:\n        ..."
}
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -85,6 +85,7 @@\n c
full
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -85,6 +85,7 @@\n         choices: Optional[List[str]] = None,\n         show_default: bool = True,\n         show_choices: bool = True,\n+        case_sensitive: bool = True,\n         default: DefaultType,\n         stream: Optional[TextIO] = None,\n     ) -> Union[DefaultType, PromptType]:\n", "is_truncated": false}
16edit_file
{
 "filepath": "rich/prompt.py",
 "new_string": "    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        case_sensitive: bool = True,\n        stream: Optional[TextIO] = None,\n    ) -> PromptType:\n        ...",
 "old_string": "    @classmethod\n    @overload\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        stream: Optional[TextIO] = None,\n    ) -> PromptType:\n        ..."
}
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -102,6 +102,7 @@\n
full
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -102,6 +102,7 @@\n         choices: Optional[List[str]] = None,\n         show_default: bool = True,\n         show_choices: bool = True,\n+        case_sensitive: bool = True,\n         stream: Optional[TextIO] = None,\n     ) -> PromptType:\n         ...\n", "is_truncated": false}
17edit_file
{
 "filepath": "rich/prompt.py",
 "new_string": "    @classmethod\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        case_sensitive: bool = True,\n        default: Any = ...,\n        stream: Optional[TextIO] = None,\n    ) -> Any:\n        \"\"\"Shortcut to construct and run a prompt loop and return the result.\n\n        Example:\n            >>> filename = Prompt.ask(\"Enter a filename\")\n\n        Args:\n            prompt (TextType, optional): Prompt text. Defaults to \"\".\n            console (Console, optional): A Console instance or None to use global console. Defaults to None.\n            password (bool, optional): Enable password input. Defaults to False.\n            choices (List[str], optional): A list of valid choices. Defaults to None.\n            show_default (bool, optional): Show default in prompt. Defaults to True.\n            show_choices (bool, optional): Show choices in prompt. Defaults to True.\n            case_sensitive (bool, optional): Whether choices are case-sensitive. Defaults to True.\n            stream (TextIO, optional): Optional text file open for reading to get input. Defaults to None.\n        \"\"\"\n        _prompt = cls(\n            prompt,\n            console=console,\n            password=password,\n            choices=choices,\n            show_default=show_default,\n            show_choices=show_choices,\n            case_sensitive=case_sensitive,\n        )\n        return _prompt(default=default, stream=stream)",
 "old_string": "    @classmethod\n    def ask(\n        cls,\n        prompt: TextType = \"\",\n        *,\n        console: Optional[Console] = None,\n        password: bool = False,\n        choices: Optional[List[str]] = None,\n        show_default: bool = True,\n        show_choices: bool = True,\n        default: Any = ...,\n        stream: Optional[TextIO] = None,\n    ) -> Any:\n        \"\"\"Shortcut to construct and run a prompt loop and return the result.\n\n        Example:\n            >>> filename = Prompt.ask(\"Enter a filename\")\n\n        Args:\n            prompt (TextType, optional): Prompt text. Defaults to \"\".\n            console (Console, optional): A Console instance or None to use global console. Defaults to None.\n            password (bool, optional): Enable password input. Defaults to False.\n            choices (List[str], optional): A list of valid choices. Defaults to None.\n            show_default (bool, optional): Show default in prompt. Defaults to True.\n            show_choices (bool, optional): Show choices in prompt. Defaults to True.\n            stream (TextIO, optional): Optional text file open for reading to get input. Defaults to None.\n        \"\"\"\n        _prompt = cls(\n            prompt,\n            console=console,\n            password=password,\n            choices=choices,\n            show_default=show_default,\n            show_choices=show_choices,\n        )\n        return _prompt(default=default, stream=stream)"
}
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -117,6 +117,7 @@\n
full
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -117,6 +117,7 @@\n         choices: Optional[List[str]] = None,\n         show_default: bool = True,\n         show_choices: bool = True,\n+        case_sensitive: bool = True,\n         default: Any = ...,\n         stream: Optional[TextIO] = None,\n     ) -> Any:\n@@ -132,6 +133,7 @@\n             choices (List[str], optional): A list of valid choices. Defaults to None.\n             show_default (bool, optional): Show default in prompt. Defaults to True.\n             show_choices (bool, optional): Show choices in prompt. Defaults to True.\n+            case_sensitive (bool, optional): Whether choices are case-sensitive. Defaults to True.\n             stream (TextIO, optional): Optional text file open for reading to get input. Defaults to None.\n         \"\"\"\n         _prompt = cls(\n@@ -141,6 +143,7 @@\n             choices=choices,\n             show_default=show_default,\n             show_choices=show_choices,\n+            case_sensitive=case_sensitive,\n         )\n         return _prompt(default=default, stream=stream)\n \n", "is_truncated": false}
18edit_file
{
 "filepath": "rich/prompt.py",
 "new_string": "    def check_choice(self, value: str) -> bool:\n        \"\"\"Check value is in the list of valid choices.\n\n        Args:\n            value (str): Value entered by user.\n\n        Returns:\n            bool: True if choice was valid, otherwise False.\n        \"\"\"\n        assert self.choices is not None\n        if self.case_sensitive:\n            return value.strip() in self.choices\n        return value.strip().lower() in [choice.lower() for choice in self.choices]",
 "old_string": "    def check_choice(self, value: str) -> bool:\n        \"\"\"Check value is in the list of valid choices.\n\n        Args:\n            value (str): Value entered by user.\n\n        Returns:\n            bool: True if choice was valid, otherwise False.\n        \"\"\"\n        assert self.choices is not None\n        return value.strip() in self.choices"
}
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -219,7 +219,9 @@\n
full
{"status": "ok", "filepath": "rich/prompt.py", "occurrences": 1, "strategy": "exact", "diff": "--- a/rich/prompt.py\n+++ b/rich/prompt.py\n@@ -219,7 +219,9 @@\n             bool: True if choice was valid, otherwise False.\n         \"\"\"\n         assert self.choices is not None\n-        return value.strip() in self.choices\n+        if self.case_sensitive:\n+            return value.strip() in self.choices\n+        return value.strip().lower() in [choice.lower() for choice in self.choices]\n \n     def process_response(self, value: str) -> PromptType:\n         \"\"\"Process response from user, convert to prompt type.\n", "is_truncated": false}
19run_command
{
 "command": "python3 -c \"from rich.prompt import Prompt; import unittest; from unittest.mock import patch; class TestPrompt(unittest.TestCase): @patch('rich.console.Console.input') def test_case_insensitive(self, mock_input): mock_input.return_value = 'paul'; result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False); self.assertEqual(result, 'paul'); @patch('rich.console.Console.input') def test_case_sensitive(self, mock_input): mock_input.return_value = 'paul'; with self.assertRaises(Exception): Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=True); unittest.main(argv=[''], exit=False)\""
}
{"status": "error", "error_type": "CommandError", "error_message": " File \"<string>\", line 1\n from rich.prompt import Prompt; import unittest; from unittest.
full
{"status": "error", "error_type": "CommandError", "error_message": "  File \"<string>\", line 1\n    from rich.prompt import Prompt; import unittest; from unittest.mock import patch; class TestPrompt(unittest.TestCase): @patch('rich.console.Console.input') def test_case_insensitive(self, mock_input): mock_input.return_value = 'paul'; result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False); self.assertEqual(result, 'paul'); @patch('rich.console.Console.input') def test_case_sensitive(self, mock_input): mock_input.return_value = 'paul'; with self.assertRaises(Exception): Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=True); unittest.main(argv=[''], exit=False)\n                                                                                      ^^^^^\nSyntaxError: invalid syntax\n", "details": {"stdout": "", "stderr": "  File \"<string>\", line 1\n    from rich.prompt import Prompt; import unittest; from unittest.mock import patch; class TestPrompt(unittest.TestCase): @patch('rich.console.Console.input') def test_case_insensitive(self, mock_input): mock_input.return_value = 'paul'; result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False); self.assertEqual(result, 'paul'); @patch('rich.console.Console.input') def test_case_sensitive(self, mock_input): mock_input.return_value = 'paul'; with self.assertRaises(Exception): Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=True); unittest.main(argv=[''], exit=False)\n                                                                                      ^^^^^\nSyntaxError: invalid syntax\n", "exit_code": 1}}
20write_file
{
 "filepath": "/tmp/test_prompt_case.py",
 "content": "from rich.prompt import Prompt\nimport unittest\nfrom unittest.mock import patch\n\nclass TestPrompt(unittest.TestCase):\n    @patch('rich.console.Console.input')\n    def test_case_insensitive(self, mock_input):\n        mock_input.return_value = 'paul'\n        result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False)\n        self.assertEqual(result, 'paul')\n\n    @patch('rich.console.Console.input')\n    def test_case_sensitive(self, mock_input):\n        mock_input.return_value = 'paul'\n        # When case_sensitive=True, 'paul' should not be in ['Paul', 'Jessica']\n        # Prompt.ask will loop until a valid response is given.\n        # To avoid infinite loop in test, we can mock input to return a valid one eventually\n        # or just check if it raises InvalidResponse internally.\n        # But Prompt.ask catches InvalidResponse and loops.\n        # Let's mock input to return 'paul' then 'Paul'.\n        mock_input.side_effect = ['paul', 'Paul']\n        result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=True)\n        self.assertEqual(result, 'Paul')\n        self.assertEqual(mock_input.call_count, 2)\n\nif __name__ == \"__main__\":\n    unittest.main()\n"
}
{"status": "error", "error_type": "FileWriteError", "error_message": "Path traversal detected: '/tmp/test_prompt_case.py' escapes workspace root."}
full
{"status": "error", "error_type": "FileWriteError", "error_message": "Path traversal detected: '/tmp/test_prompt_case.py' escapes workspace root."}
21write_file
{
 "content": "from rich.prompt import Prompt\nimport unittest\nfrom unittest.mock import patch\n\nclass TestPrompt(unittest.TestCase):\n    @patch('rich.console.Console.input')\n    def test_case_insensitive(self, mock_input):\n        mock_input.return_value = 'paul'\n        result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=False)\n        self.assertEqual(result, 'paul')\n\n    @patch('rich.console.Console.input')\n    def test_case_sensitive(self, mock_input):\n        mock_input.return_value = 'paul'\n        # When case_sensitive=True, 'paul' should not be in ['Paul', 'Jessica']\n        # Prompt.ask will loop until a valid response is given.\n        # To avoid infinite loop in test, we can mock input to return a valid one eventually\n        # or just check if it raises InvalidResponse internally.\n        # But Prompt.ask catches InvalidResponse and loops.\n        # Let's mock input to return 'paul' then 'Paul'.\n        mock_input.side_effect = ['paul', 'Paul']\n        result = Prompt.ask('Name', choices=['Paul', 'Jessica'], case_sensitive=True)\n        self.assertEqual(result, 'Paul')\n        self.assertEqual(mock_input.call_count, 2)\n\nif __name__ == \"__main__\":\n    unittest.main()\n",
 "filepath": "test_prompt_case.py"
}
{"status": "ok", "filepath": "test_prompt_case.py", "size": 1201}
full
{"status": "ok", "filepath": "test_prompt_case.py", "size": 1201}
22run_command
{
 "command": "python3 test_prompt_case.py"
}
{"status": "ok", "stdout": "Please select one of the available options\n", "stderr": "..\n----------------------------------------------------------------------
full
{"status": "ok", "stdout": "Please select one of the available options\n", "stderr": "..\n----------------------------------------------------------------------\nRan 2 tests in 0.003s\n\nOK\n", "exit_code": 0}
23run_command
{
 "command": "rm test_prompt_case.py"
}
{"status": "ok", "stdout": "", "stderr": "", "exit_code": 0}
full
{"status": "ok", "stdout": "", "stderr": "", "exit_code": 0}
24submit_patch
{}
{"status": "ok", "patch_size": 2959, "files_changed": 1}
full
{"status": "ok", "patch_size": 2959, "files_changed": 1}

Patch

diff --git a/rich/prompt.py b/rich/prompt.py
index 064c959b..28078879 100644
--- a/rich/prompt.py
+++ b/rich/prompt.py
@@ -59,6 +59,7 @@ class PromptBase(Generic[PromptType]):
         choices: Optional[List[str]] = None,
         show_default: bool = True,
         show_choices: bool = True,
+        case_sensitive: bool = True,
     ) -> None:
         self.console = console or get_console()
         self.prompt = (
@@ -71,6 +72,7 @@ class PromptBase(Generic[PromptType]):
             self.choices = choices
         self.show_default = show_default
         self.show_choices = show_choices
+        self.case_sensitive = case_sensitive
 
     @classmethod
     @overload
@@ -83,6 +85,7 @@ class PromptBase(Generic[PromptType]):
         choices: Optional[List[str]] = None,
         show_default: bool = True,
         show_choices: bool = True,
+        case_sensitive: bool = True,
         default: DefaultType,
         stream: Optional[TextIO] = None,
     ) -> Union[DefaultType, PromptType]:
@@ -99,6 +102,7 @@ class PromptBase(Generic[PromptType]):
         choices: Optional[List[str]] = None,
         show_default: bool = True,
         show_choices: bool = True,
+        case_sensitive: bool = True,
         stream: Optional[TextIO] = None,
     ) -> PromptType:
         ...
@@ -113,6 +117,7 @@ class PromptBase(Generic[PromptType]):
         choices: Optional[List[str]] = None,
         show_default: bool = True,
         show_choices: bool = True,
+        case_sensitive: bool = True,
         default: Any = ...,
         stream: Optional[TextIO] = None,
     ) -> Any:
@@ -128,6 +133,7 @@ class PromptBase(Generic[PromptType]):
             choices (List[str], optional): A list of valid choices. Defaults to None.
             show_default (bool, optional): Show default in prompt. Defaults to True.
             show_choices (bool, optional): Show choices in prompt. Defaults to True.
+            case_sensitive (bool, optional): Whether choices are case-sensitive. Defaults to True.
             stream (TextIO, optional): Optional text file open for reading to get input. Defaults to None.
         """
         _prompt = cls(
@@ -137,6 +143,7 @@ class PromptBase(Generic[PromptType]):
             choices=choices,
             show_default=show_default,
             show_choices=show_choices,
+            case_sensitive=case_sensitive,
         )
         return _prompt(default=default, stream=stream)
 
@@ -212,7 +219,9 @@ class PromptBase(Generic[PromptType]):
             bool: True if choice was valid, otherwise False.
         """
         assert self.choices is not None
-        return value.strip() in self.choices
+        if self.case_sensitive:
+            return value.strip() in self.choices
+        return value.strip().lower() in [choice.lower() for choice in self.choices]
 
     def process_response(self, value: str) -> PromptType:
         """Process response from user, convert to prompt type.

Test output

show
.F
=================================== FAILURES ===================================
_______________________ test_prompt_str_case_insensitive _______________________

    def test_prompt_str_case_insensitive():
        INPUT = "egg\nFoO"
        console = Console(file=io.StringIO())
        name = Prompt.ask(
            "what is your name",
            console=console,
            choices=["foo", "bar"],
            default="baz",
            case_sensitive=False,
            stream=io.StringIO(INPUT),
        )
>       assert name == "foo"
E       AssertionError: assert 'FoO' == 'foo'
E         
E         - foo
E         + FoO

tests/test_prompt.py:35: AssertionError
!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!
1 failed, 1 passed in 0.17s