-
-
Notifications
You must be signed in to change notification settings - Fork 245
Print glitch regarding newline and line-ends #744
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
Comments
They way running
becomes
feels related to me, the way that on reformat the output gets moved to the next line. |
ata2001
added a commit
to ata2001/bpython
that referenced
this issue
Sep 30, 2018
ata2001
added a commit
to ata2001/bpython
that referenced
this issue
Oct 4, 2018
ata2001
added a commit
to ata2001/bpython
that referenced
this issue
Oct 4, 2018
ata2001
added a commit
to ata2001/bpython
that referenced
this issue
Oct 4, 2018
ata2001
added a commit
to ata2001/bpython
that referenced
this issue
Oct 4, 2018
ata2001
added a commit
to ata2001/bpython
that referenced
this issue
Oct 4, 2018
ata2001
added a commit
to ata2001/bpython
that referenced
this issue
Oct 4, 2018
sebastinas
pushed a commit
that referenced
this issue
Oct 5, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The bug seems to be triggered when there is a print with
end=''
followed by a print that begins with a\n
.Minimal example:
Expected:
foo
andbar
are in immediately adjacent lines.Actual: There is an extraneous line between
foo
andbar
.For reference, observe what the standard python interpreter does:
I have the hunch that the bug probably lives in the stdio shim of bpython. The bugtracker shows no similar bugs.
The text was updated successfully, but these errors were encountered: