You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❯ python
Python 3.13.1 (tags/v3.13.1:0671451, Dec 3 2024, 19:06:28) [MSC v.1942 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> b'test_6868_tmp\xed\xb4\x80'.decode("utf-8", "surrogatepass")
'test_6868_tmp\udd00'
>>> exit()
❯ ./target/release/rustpython
Welcome to the magnificent Rust Python 0.4.0 interpreter 😱 🖖
RustPython 3.13.0
Type "help", "copyright", "credits" or "license" for more information.
>>>>> b'test_6868_tmp\xed\xb4\x80'.decode("utf-8", "surrogatepass")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "encodings_utf_8", line 16, in decode
UnicodeDecodeError: ('utf-8', b'test_6868_tmp\xed\xb4\x80', 13, 14, 'invalid continuation byte')
>>>>> exit()
The rustpython demo on the web also fails (although that is really out of date).
The text was updated successfully, but these errors were encountered:
On Windows:
The rustpython demo on the web also fails (although that is really out of date).
The text was updated successfully, but these errors were encountered: