Miss Islington (bot)
251667340e
[3.13] gh-121245: a regression test for site.register_readline() (GH-121259) ( #121322 )
2024-07-03 11:11:41 +00:00
devdanzin
bc515b332b
[3.13] gh-121016: Add test for PYTHON_BASIC_REPL envioronment variable (GH-121017) ( #121064 )
...
* gh-121016: Add test for `PYTHON_BASIC_REPL` envioronment variable (#121017 )
(cherry picked from commit 9e45fd9858
)
* [3.13] gh-121016: Add test for `PYTHON_BASIC_REPL` envioronment variable (GH-121017)
(cherry picked from commit 9e45fd9858
)
Co-authored-by: devdanzin <74280297+devdanzin@users.noreply.github.com>
2024-06-26 22:17:14 +01:00
Miss Islington (bot)
38cfa92880
[3.13] gh-118908: Use __main__ for the default PyREPL namespace (GH-121054) ( #121059 )
2024-06-26 19:25:38 +00:00
Miss Islington (bot)
bb5d19440b
[3.13] gh-120635: Avoid leaking processes in test_pyrepl (GH-120676) ( #120741 )
...
gh-120635: Avoid leaking processes in test_pyrepl (GH-120676)
If the child process takes longer than SHORT_TIMEOUT seconds to
complete, kill the process but then wait until it completes with no
timeout to not leak child processes.
(cherry picked from commit 0f3e36454d
)
Co-authored-by: Victor Stinner <vstinner@python.org>
2024-06-19 13:38:37 +00:00
Miss Islington (bot)
ff358616dd
[3.13] gh-118908: Protect the REPL subprocess with a timeout in tests (GH-120408) ( #120430 )
...
(cherry picked from commit 3453362183
)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
2024-06-12 21:58:29 +02:00
Miss Islington (bot)
f5289c450a
[3.13] gh-118908: Limit exposed globals from internal imports and definitions on new REPL startup (GH-119547) ( #120362 )
2024-06-11 18:04:39 +00:00
Łukasz Langa
eea45ea213
[3.13] gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843) (GH-120066)
...
(cherry picked from commit d9095194dd
)
Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Co-authored-by: Michael Droettboom <mdboom@gmail.com>
2024-06-04 21:26:10 +02:00
Miss Islington (bot)
93b95e91fa
[3.13] gh-119553: Clear reader on Ctrl-C command (GH-119801) ( #120062 )
...
(cherry picked from commit 010ea93b2b
)
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-06-04 18:45:22 +00:00
Miss Islington (bot)
8d74eae4d4
[3.13] gh-120041: Do not use append_to_screen when completions are visible (GH-120042) ( #120051 )
...
* gh-120041: Do not use append_to_screen when completions are visible (GH-120042)
(cherry picked from commit 8fc7653766
)
* gh-120041: Refactor check for visible completion menu in completing_reader (GH-120055)
(cherry picked from commit bf8e5e53d0
)
---------
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
2024-06-04 18:10:29 +00:00
Miss Islington (bot)
6b10467fbc
[3.13] gh-118835: pyrepl: Fix prompt length computation for custom prompts containing ANSI escape codes (GH-119942) ( #119990 )
...
gh-118835: pyrepl: Fix prompt length computation for custom prompts containing ANSI escape codes (GH-119942)
(cherry picked from commit 2e0aa731ae
)
Co-authored-by: Daniel Hollas <daniel.hollas@bristol.ac.uk>
2024-06-03 17:31:26 +00:00
Miss Islington (bot)
060d846f43
[3.13] Use Cirrus M1 macOS runners for CI (GH-119979) (GH-119986)
...
(cherry picked from commit 6acb32fac3
)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Co-authored-by: Ee Durbin <ee@python.org>
2024-06-03 18:15:37 +02:00
Victor Stinner
ac35d9621b
[3.13] gh-111201: Skip pyrepl Windows tests earlier ( #119848 ) ( #119924 )
...
gh-111201: Skip pyrepl Windows tests earlier (#119848 )
Don't attempt to load pyrepl Windows console if platforms others than
Windows. For example, the import can fail if ctypes is missing.
(cherry picked from commit 91601a5596
)
2024-06-01 21:21:13 +00:00
Miss Islington (bot)
a5272e63ef
[3.13] gh-118894: Make asyncio REPL use pyrepl (GH-119433) ( #119884 )
...
(cherry picked from commit 2237946af0
)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-05-31 17:15:44 -04:00
Miss Islington (bot)
d6faac6d1f
[3.13] gh-111201: Support pyrepl on Windows (GH-119559) (GH-119850)
...
(cherry picked from commit 0d07182821
)
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>
2024-05-31 17:18:28 +02:00
Miss Islington (bot)
38bf39cb4b
[3.13] gh-111201: Improve pyrepl auto indentation (GH-119606) (GH-119833)
...
- auto-indent when editing multi-line block
- ignore comments
(cherry picked from commit dae0375bd9
)
Co-authored-by: Arnon Yaari <wiggin15@yahoo.com>
2024-05-31 11:51:53 +02:00
Miss Islington (bot)
40a024c983
[3.13] gh-119555: catch SyntaxError from compile() in the InteractiveColoredConsole (GH-119557) ( #119709 )
2024-05-29 12:04:45 +01:00
Miss Islington (bot)
17d3398486
[3.13] gh-119443: Turn off from __future__ import annotations in REPL (GH-119493) ( #119697 )
...
gh-119443: Turn off from __future__ import annotations in REPL (GH-119493)
(cherry picked from commit a8e35e8eba
)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
2024-05-29 01:26:19 +00:00
Miss Islington (bot)
8fd8cc564b
[3.13] gh-119469: Fix _pyrepl reference leaks (GH-119470) ( #119471 )
...
(cherry picked from commit 6e012ced6c
)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-05-23 19:58:59 +02:00
Miss Islington (bot)
58dbb4a4b0
[3.13] gh-111201: Speed up paste mode in the REPL ( #119341 ) (GH-119432) ( #119439 )
...
(cherry picked from commit e6572e8f98
)
Also includes:
* gh-111201: Use calc_complete_screen after bracketed paste in PyREPL (GH-119432)
(cherry picked from commit 14b063cbf1
)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
2024-05-23 04:23:40 +00:00
Lysandros Nikolaou
9fa1b4fc46
[3.13] gh-118911: Trailing whitespace in a block shouldn't prevent the user from terminating the code block (GH-119355) ( #119404 )
...
(cherry picked from commit 5091c4400c
)
Co-authored-by: Aya Elsayed <ayah.ehab11@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-05-23 00:12:26 -04:00
Lysandros Nikolaou
9435124d4a
[3.13] gh-111201: auto-indentation in _pyrepl (GH-119348) ( #119427 )
...
(cherry picked from commit cd516cd1f5
)
Co-authored-by: Arnon Yaari <wiggin15@yahoo.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-05-22 23:14:03 +02:00
Lysandros Nikolaou
e6e4efcc86
[3.13] gh-119357: Increase test coverage for keymap in _pyrepl (GH-119358) ( #119414 )
...
(cherry picked from commit 73ab83b27f
)
Co-authored-by: Eugene Triguba <eugenetriguba@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-05-22 23:13:01 +02:00
Miss Islington (bot)
a463cd8e45
[3.13] gh-118893: Evaluate all statements in the new REPL separately (GH-119318) ( #119408 )
...
(cherry picked from commit a3e4fec873
)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-05-22 16:22:01 +00:00
Miss Islington (bot)
eafd633fac
[3.13] gh-119205: Fix autocompletion bug in new repl (GH-119229) ( #119407 )
...
(cherry picked from commit 506b1a3ff6
)
Co-authored-by: Koudai Aono <koxudaxi@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2024-05-22 16:07:38 +00:00
Lysandros Nikolaou
ac9163637b
[3.13] gh-111201: Remove readline dependency from the PyREPL (GH-119262) ( #119403 )
...
(cherry picked from commit 561ff1fa71
)
2024-05-22 11:45:11 -04:00
Lysandros Nikolaou
721459831a
[3.13] gh-119306: Break up _pyrepl tests (GH-119307) ( #119362 )
...
(cherry picked from commit f49df4f486
)
Co-authored-by: Eugene Triguba <eugenetriguba@gmail.com>
2024-05-22 11:02:18 -04:00