diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-29 11:04:45 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-29 11:04:45 (GMT) |
| commit | 40a024c9835cddd85f14bab4b1e8f6545a621208 (patch) | |
| tree | 68466bee4878bccd99a23d83d5bacf436142b6a3 /Lib/test/test_pyrepl/test_interact.py | |
| parent | 48c777688305bfa45038a15ab09c03350503a2c4 (diff) | |
| download | cpython-40a024c9835cddd85f14bab4b1e8f6545a621208.zip cpython-40a024c9835cddd85f14bab4b1e8f6545a621208.tar.gz cpython-40a024c9835cddd85f14bab4b1e8f6545a621208.tar.bz2 | |
[3.13] gh-119555: catch SyntaxError from compile() in the InteractiveColoredConsole (GH-119557) (#119709)
Diffstat (limited to 'Lib/test/test_pyrepl/test_interact.py')
| -rw-r--r-- | Lib/test/test_pyrepl/test_interact.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_pyrepl/test_interact.py b/Lib/test/test_pyrepl/test_interact.py index 6ebd51f..4d01ea7 100644 --- a/Lib/test/test_pyrepl/test_interact.py +++ b/Lib/test/test_pyrepl/test_interact.py @@ -94,6 +94,14 @@ class TestSimpleInteract(unittest.TestCase): with patch.object(console, "showsyntaxerror") as mock_showsyntaxerror: console.runsource(source) mock_showsyntaxerror.assert_called_once() + source = dedent("""\ + match 1: + case {0: _, 0j: _}: + pass + """) + with patch.object(console, "showsyntaxerror") as mock_showsyntaxerror: + console.runsource(source) + mock_showsyntaxerror.assert_called_once() def test_no_active_future(self): console = InteractiveColoredConsole() |
