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
GzipFile is still using IO as argument type, which is discouraged. We prefer custom protocols for argument types, and that would hopefully fix the problem above.
Does it make sense to use custom protocols in GZipFile? Would it be an improvement?
The text was updated successfully, but these errors were encountered:
Yes, this is the direction we want in general. You don't necessarily need custom protocols; it's possible that something like _typeshed.SupportsWrite will suffice (I haven't checked).
Kicking this problem upstream: #5099
Does it make sense to use custom protocols in
GZipFile
? Would it be an improvement?The text was updated successfully, but these errors were encountered: