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
If I call zipp.Path.open('r', 1), the last argument is interpreted as an encoding argument, whereas in pathlib.Path.open('r', 1) and open('foo', 'r', 1) the last argument is interpreted as a buffering argument.
Could the signature be adjusted to match pathlib and io? Thank you
The text was updated successfully, but these errors were encountered:
If I call
zipp.Path.open('r', 1)
, the last argument is interpreted as an encoding argument, whereas inpathlib.Path.open('r', 1)
andopen('foo', 'r', 1)
the last argument is interpreted as a buffering argument.Could the signature be adjusted to match pathlib and io? Thank you
The text was updated successfully, but these errors were encountered: