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
Currently, zipp.Path defers to zipfile.ZipFile.open for opening a stream to a file in the zipfile. This method does not have support for decoding to text. To improve compatibility with pathlib.Path.open (whose default behavior is to decode to text), zipp should honor b in the mode parameter and honor encoding parameters to open().
The text was updated successfully, but these errors were encountered:
Currently, zipp.Path defers to zipfile.ZipFile.open for opening a stream to a file in the zipfile. This method does not have support for decoding to text. To improve compatibility with
pathlib.Path.open
(whose default behavior is to decode to text), zipp should honorb
in themode
parameter and honor encoding parameters toopen()
.The text was updated successfully, but these errors were encountered: