diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-31 15:18:28 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-31 15:18:28 (GMT) |
| commit | d6faac6d1f825405398158272286aaed94eb51fc (patch) | |
| tree | 3b06fc114183c3185556756f3d36172f2b06fc08 /Lib/test/test_pyrepl/test_unix_console.py | |
| parent | 6e57bd01e00d40dfe7c9344d0b528d9059b1fa93 (diff) | |
| download | cpython-d6faac6d1f825405398158272286aaed94eb51fc.zip cpython-d6faac6d1f825405398158272286aaed94eb51fc.tar.gz cpython-d6faac6d1f825405398158272286aaed94eb51fc.tar.bz2 | |
[3.13] gh-111201: Support pyrepl on Windows (GH-119559) (GH-119850)
(cherry picked from commit 0d07182821fad7b95a043d006f1ce13a2d22edcb)
Co-authored-by: Dino Viehland <dinoviehland@gmail.com>
Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com>
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Lib/test/test_pyrepl/test_unix_console.py')
| -rw-r--r-- | Lib/test/test_pyrepl/test_unix_console.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Lib/test/test_pyrepl/test_unix_console.py b/Lib/test/test_pyrepl/test_unix_console.py index e1faa00..d0b98f1 100644 --- a/Lib/test/test_pyrepl/test_unix_console.py +++ b/Lib/test/test_pyrepl/test_unix_console.py @@ -1,12 +1,16 @@ import itertools +import sys +import unittest from functools import partial from unittest import TestCase from unittest.mock import MagicMock, call, patch, ANY from .support import handle_all_events, code_to_events -from _pyrepl.console import Event -from _pyrepl.unix_console import UnixConsole - +try: + from _pyrepl.console import Event + from _pyrepl.unix_console import UnixConsole +except ImportError: + pass def unix_console(events, **kwargs): console = UnixConsole() @@ -67,6 +71,7 @@ TERM_CAPABILITIES = { } +@unittest.skipIf(sys.platform == "win32", "No Unix event queue on Windows") @patch("_pyrepl.curses.tigetstr", lambda s: TERM_CAPABILITIES.get(s)) @patch( "_pyrepl.curses.tparm", |
