aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_pyrepl/support.py
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2025-05-05 23:45:25 +0200
committerGitHub <noreply@github.com>2025-05-05 23:45:25 +0200
commitf610bbdf74ea580b14353c6bfd08fd00bcbfa11e (patch)
tree5755794c7c8f2e4c14ad4be9665499311b4db17b /Lib/test/test_pyrepl/support.py
parent9cc77aaf9dce6ffa82786dc77f7f83387c857cad (diff)
downloadcpython-f610bbdf74ea580b14353c6bfd08fd00bcbfa11e.tar.gz
cpython-f610bbdf74ea580b14353c6bfd08fd00bcbfa11e.zip
gh-133346: Make theming support in _colorize extensible (GH-133347)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Diffstat (limited to 'Lib/test/test_pyrepl/support.py')
-rw-r--r--Lib/test/test_pyrepl/support.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_pyrepl/support.py b/Lib/test/test_pyrepl/support.py
index 3692e164cb9..4f7f9d77933 100644
--- a/Lib/test/test_pyrepl/support.py
+++ b/Lib/test/test_pyrepl/support.py
@@ -113,9 +113,6 @@ handle_events_narrow_console = partial(
prepare_console=partial(prepare_console, width=10),
)
-reader_no_colors = partial(prepare_reader, can_colorize=False)
-reader_force_colors = partial(prepare_reader, can_colorize=True)
-
class FakeConsole(Console):
def __init__(self, events, encoding="utf-8") -> None: