aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/_pyrepl/simple_interact.py
Commit message (Collapse)AuthorAge
* gh-131152: Remove unused imports in `_pyrepl` and `ctypes` (#131150)Victor Stinner2025-03-12
|
* gh-117174: Add a new route in linecache to fetch interactive source code ↵Pablo Galindo Salgado2025-03-10
| | | | (#117500)
* gh-123024: Correctly prepare/restore around help and show-history commands ↵Lysandros Nikolaou2025-01-21
| | | | | | (#124485) Co-authored-by: Emily Morehouse <emily@cuttlesoft.com> Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
* Fix while statements with non-bool conditions in `_pyrepl` (#127509)RUANG (James Roy)2025-01-01
| | | Fix non-bool value conditions
* gh-123856: Fix PyREPL failure when a keyboard interrupt is triggered after ↵Emily Morehouse2024-09-25
| | | | | using a history search (#124396) Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-119034, REPL: Change page up/down keys to search in history (#123607)Victor Stinner2024-09-06
| | | | | | Change <page up> and <page down> keys of the Python REPL to history search forward/backward. Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-119896: Fix CTRL-Z behavior in the new REPL on Windows (GH-122217)Dino Viehland2024-07-30
|
* gh-121295: Fix blocked console after interrupting a long paste (GH-121815)Marta Gómez Macías2024-07-16
|
* gh-121610: pyrepl - handle extending blocks when multi-statement blocks are ↵saucoide2024-07-16
| | | | | | | | | | | | pasted (GH-121757) console.compile with the "single" param throws an exception when there are multiple statements, never allowing to adding newlines to a pasted code block (gh-121610) This add a few extra checks to allow extending when in an indented block, and tests for a few examples Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-121790: Fix interactive console initialization (#121793)Milan Oberkirch2024-07-16
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-118908: Use __main__ for the default PyREPL namespace (#121054)Łukasz Langa2024-06-26
|
* gh-118908: Fix completions after namespace change in REPL (#120370)Lysandros Nikolaou2024-06-12
|
* gh-118908: Limit exposed globals from internal imports and definitions on ↵Eugene Triguba2024-06-11
| | | | new REPL startup (#119547)
* gh-119553: Fix console when pressing Ctrl-C within a multiline block (#120075)Lysandros Nikolaou2024-06-04
|
* gh-118894: Make asyncio REPL use pyrepl (GH-119433)Łukasz Langa2024-05-31
|
* gh-111201: Support pyrepl on Windows (#119559)Dino Viehland2024-05-31
| | | | Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-119555: catch SyntaxError from compile() in the InteractiveColoredConsole ↵Sergey B Kirpichev2024-05-29
| | | | (#119557)
* gh-119443: Turn off from __future__ import annotations in REPL (#119493)Jelle Zijlstra2024-05-28
|
* gh-119548: Add a 'clear' command to the REPL (#119549)Pablo Galindo Salgado2024-05-25
|
* gh-111201: Speed up paste mode in the REPL (#119341)Pablo Galindo Salgado2024-05-22
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-118893: Evaluate all statements in the new REPL separately (#119318)Pablo Galindo Salgado2024-05-21
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-111201: Allow pasted code to contain multiple statements in the REPL ↵Pablo Galindo Salgado2024-05-07
| | | | | (#118712) Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* Remove several unused imports in `_pyrepl` (#118668)Nikita Sobolev2024-05-07
|
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-05
Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Marta Gómez Macías <mgmacias@google.com> Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>