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)
The following python code:
returns
with python but
with rustpython.
(btw the formatting of the output string in the REPL is not valid python)