We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following python code:
b"%s" % b"foo"
returns
b'foo'
with python but
b'b'foo''
with rustpython.
(btw the formatting of the output string in the REPL is not valid python)