-
-
Notifications
You must be signed in to change notification settings - Fork 34.4k
Enable error overlays in the Python REPL #148228
Description
Feature or enhancement
Proposal:
Under the trend of improving Python diagnostic messages, I propose we enable the Python REPL error messages (disabled since the PyPy era). There are at least 19 places among various REPL commands where we do log errors, but never display them to the user:
I think displaying some of these could be a nice feature.
The best example is:
cpython/Lib/_pyrepl/completing_reader.py
Lines 190 to 193 in 4f68c04
| completions = r.cmpltn_menu_choices | |
| if not completions: | |
| if not r.cmpltn_action: | |
| r.error("no matches") |
Compare current vs proposed (enabled + colorized):
Screen.Recording.2026-04-07.at.19.04.58.mov
Given that we already use overlays for completions, I propose we review errors that we could propagate to the user and open up cool possibilities (we can put "tips" there, we can bundle Levenshtein if tab misses something, if it makes sense). Having this makes it clear when the REPL actually receives keyboard shortcuts but can't do anything with them vs when the keyboard shortcut was incorrect, whereas now it is impossible to distinguish these two states.
Screen.Recording.2026-04-07.at.19.08.58.mov
Some of these errors may feel noisy/unclear if the user accidentally presses something, but we can make them easier to understand by attaching context about what key binds were pressed or silencing some errors (e.g. creating .debug() besides .error() and resorting to that one. Then maybe turn this on with an environment variable, etc.).
Feel free to play with the PR to stress-test this.
Digressing a bit, this could turn into something interesting, e.g. we could have a similar overlay for displaying tips with a beautiful 💡 emoji or a "what's new" if we add some new stuff to the REPL. (No, I will never suggest adding LLM snake pets to the REPL. Never.)
Has this already been discussed elsewhere?
This is a minor feature, which does not need previous discussion elsewhere
Links to previous discussion of this feature:
No response