mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-10 07:17:59 -05:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
14 lines
413 B
Python
14 lines
413 B
Python
from typing import Any, List, Set, Tuple
|
|
|
|
class MaxSizeExceeded(Exception): ...
|
|
class NoSSLError(Exception): ...
|
|
class FatalSSLAlert(Exception): ...
|
|
|
|
def plat_specific_errors(*errnames: str) -> List[int]: ...
|
|
|
|
socket_error_eintr: List[int]
|
|
socket_errors_to_ignore: List[int]
|
|
socket_errors_nonblocking: List[int]
|
|
acceptable_sock_shutdown_error_codes: Set[int]
|
|
acceptable_sock_shutdown_exceptions: Tuple[Exception]
|