diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-31 21:15:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 21:15:44 (GMT) |
commit | a5272e63efc003a30a2b603b512d367282a24209 (patch) | |
tree | dbe9bc274cb8806e619b32f7b6bb0afb52649b9d /Lib/test/test_pyrepl/test_interact.py | |
parent | 67ac19111f14e9606454d0f36a52132996073db4 (diff) | |
download | cpython-a5272e63efc003a30a2b603b512d367282a24209.zip cpython-a5272e63efc003a30a2b603b512d367282a24209.tar.gz cpython-a5272e63efc003a30a2b603b512d367282a24209.tar.bz2 |
[3.13] gh-118894: Make asyncio REPL use pyrepl (GH-119433) (#119884)
(cherry picked from commit 2237946af0981c46dc7d3886477e425ccfb37f28)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Lib/test/test_pyrepl/test_interact.py')
-rw-r--r-- | Lib/test/test_pyrepl/test_interact.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyrepl/test_interact.py b/Lib/test/test_pyrepl/test_interact.py index 4d01ea7..df97b13 100644 --- a/Lib/test/test_pyrepl/test_interact.py +++ b/Lib/test/test_pyrepl/test_interact.py @@ -6,7 +6,7 @@ from textwrap import dedent from test.support import force_not_colorized -from _pyrepl.simple_interact import InteractiveColoredConsole +from _pyrepl.console import InteractiveColoredConsole class TestSimpleInteract(unittest.TestCase): |