New REPL: `python -q` outputs unnecessary blank space on empty terminal
Nessuno ha ancora preso questa issue.
- Lingua principale
- Python
- Stelle
- 77.2k
- Fork
- 35.9k
- Metriche di merge delle PR
- Metriche PR in attesa
Descrizione
Bug report
Bug description:
If I start the new REPL on a clear terminal, I get an unnecessary blank space.
clear; python -q
Whereas this does not happen if I run the old ("basic") REPL:
clear; PYTHON_BASIC_REPL=1 python -q
Analysis
I've tracked this down to these 2 lines of code: https://github.com/python/cpython/blob/3.13/Lib/_pyrepl/unix_console.py#L241-L242
self.__move(0, len(self.screen) - 1)
self.__write("\n")
I don't totally understand this code, but it certainly smells like there's a bug here when dealing with an empty screen (for example, if len(self.screen) == 0, are we trying to move the cursor to index -1?)
I'm not sure what the fix is here, though. I don't really understand this code: why are we moving up to a line just to move the cursor down a line afterwards? why can't we jump straight to where we want to be? I tried digging through the git history for answers, but it looks like this incantation dates back all the way to this initial commit to pypi/pyrepl. I'm not sure how to dig any further back in time.
CPython versions tested on:
3.13, 3.14, CPython main branch
Operating systems tested on:
Linux
I'm using Alacritty, in case that's relevant.
Linked PRs
- gh-131907
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia riproducendo lo spazio vuoto con clear; python -q e confrontalo con PYTHON_BASIC_REPL=1 python -q. Leggi Lib/_pyrepl/unix_console.py intorno alle righe 241-242, comprese le chiamate a __move e __write, e esamina la PR collegata gh-131907. Il lavoro è completato quando la nuova REPL non emette più lo spazio vuoto non necessario su un terminale vuoto.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- python
- Ambito
- cli
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 25/100