-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Python's print adds an extra newline #8
Comments
FYI: Commit b67ec22 fixes this issue. |
Hmm, it still isn't fixed for me even with that commit...? |
Strange. I just verified and as of 9d0ea81 it behaves correctly for me. Though the newline at the end of each evaluation seems to be swallowed. |
My bad, I wasn't compiling properly. Works great. |
Closed
tlively
pushed a commit
to tlively/emscripten
that referenced
this issue
Mar 23, 2022
Fix a bug in Unlink and add additional tests
steveisok
pushed a commit
to steveisok/emscripten
that referenced
this issue
Sep 18, 2023
…512.5 (emscripten-core#8) [dotnet/main] Update dependencies from dotnet/arcade
eagleoflqj
pushed a commit
to eagleoflqj/emscripten
that referenced
this issue
Nov 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On the Python demo at http://syntensity.com/static/python.html type
print 'a', 'b'
Expected output:
a b
Actual output:
a
b
The text was updated successfully, but these errors were encountered: