Traffy.UnityPython
Traffy.UnityPython copied to clipboard
document unsupported CPython features
-
typing.ClassVar, -
typing.Union: usetype1 | type2ortypes.UnionTypeinstead.
-
%format forstr,bytesandbytearray. We can use$"",str.formatandstr.format_mapinstead. For byte case, usebytearrayand build bytes usingbytearray.extend(str.decode(...))