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
fix: replace deprecated typing.ByteString with Union[bytes, bytearray, memoryview] (#575)
typing.ByteString is deprecated since Python 3.9 and will be removed in
Python 3.14. Replace all usages in proxy_protocol.py with the explicit
Union[bytes, bytearray, memoryview] type annotation, which is compatible
with Python 3.9+ and correctly represents the same set of buffer-protocol
types.
Closes#549
Signed-off-by: Cocoon-Break <86288566+lingxiu58@users.noreply.github.com>
0 commit comments