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
It happened that an unicode character appeared at position 4095 and therefore was split in two resulting in utf-8 decode fail.
bufs[fd] += os.read(fd, 4096).decode('UTF-8')
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc3 in position 4095: unexpected end of data
I'm not sure about this solution but it seems to work:
if sys.version_info < (3, 0):
for fd in fds:
bufs[fd] += os.read(fd, 4096)
else:
for fd in fds:
b = os.read(fd, 4096)
for i in range(4):
try:
bufs[fd] += b.decode('UTF-8')
break
except UnicodeDecodeError:
if i < 4:
b += os.read(fd, 1)
else:
raise
The text was updated successfully, but these errors were encountered:
python.tmbundle/Support/bin/pycheckmate.py
Line 196 in 02dbf8b
It happened that an unicode character appeared at position 4095 and therefore was split in two resulting in utf-8 decode fail.
I'm not sure about this solution but it seems to work:
The text was updated successfully, but these errors were encountered: