-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
REPL takes extra key presses on long inputs that wrap around lines #119434
Labels
Comments
DinoV
added a commit
that referenced
this issue
May 22, 2024
Fix culmitive errors in wrapping as lines proceed
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
May 22, 2024
…ythonGH-119435) Fix culmitive errors in wrapping as lines proceed (cherry picked from commit e3bf538) Co-authored-by: Dino Viehland <dinoviehland@gmail.com>
lysnikolaou
pushed a commit
that referenced
this issue
May 23, 2024
Thanks @DinoV! |
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
…ython#119435) Fix culmitive errors in wrapping as lines proceed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Bug report
Bug description:
The new REPL has an issue when outputting at the right edge of the console window. It tries to output a "" at the end, and then print the typed character at the beginning of the next line. This works fine on the first line. The 2nd line the "" + char doesn't show up until after you press a 2nd char. And at the 3rd line it takes 3 chars, and so on.
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux
Linked PRs
The text was updated successfully, but these errors were encountered: