-
Notifications
You must be signed in to change notification settings - Fork 59
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
println!
on a string obtained from py-dot
does not work as it should
#841
Comments
My guess is that
So, Python can print strings formed within Python itself well. At the same time, this also works |
btw, is it a blocker for deeper reasons, or workaround with |
Using the |
@ngeiswei
|
The latter solution seems better than |
In Python Also special handing was added to Rust and Python to get string internal representation (without escaping) when atom type is Escaped representation is chosen for the strings by default (and as wider case |
We could introduce different representations for the atoms:
Currently in Python the only representation is a |
Describe the bug
Calling
println!
on a string resulting from apy-dot
outputs the string itself instead of printing it.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Actual behavior
Additional context
The following assertion
properly passes, so the problem seems to be with the interaction of
println!
andpy-dot
.The text was updated successfully, but these errors were encountered: