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
In _read, you're decoding each chunk. However, if the chunks happen to be split in the middle of a UTF8 sequence then decoding fails.
The decoding should be done on data when it's yielded.
The text was updated successfully, but these errors were encountered:
In
_read
, you're decoding each chunk. However, if the chunks happen to be split in the middle of a UTF8 sequence then decoding fails.The decoding should be done on
data
when it'syield
ed.The text was updated successfully, but these errors were encountered: