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
Note: we have an issue where CPython will raise exceptions on internal NUL bytes, but our C++ bindings don't, and probably shouldn't
>>> import os
>>> os.system('ls\0')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: system() argument 1 must be string without null bytes, not str
>>>
From #387
This probably happens all over the place. Options:
I think I want to get rid of the concept of "warnings".
It's similar what happens when we have invalid UTF-8.
The text was updated successfully, but these errors were encountered: