mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Fix various __all__ bugs and omissions (#7618)
This commit is contained in:
@@ -1,13 +1,9 @@
|
||||
import socket
|
||||
import ssl
|
||||
import sys
|
||||
from typing import Any, BinaryIO, NoReturn, Pattern, overload
|
||||
from typing_extensions import Literal
|
||||
|
||||
if sys.version_info >= (3, 10):
|
||||
__all__ = ["POP3", "error_proto", "POP3_SSL"]
|
||||
else:
|
||||
__all__ = ["POP3", "error_proto"]
|
||||
__all__ = ["POP3", "error_proto", "POP3_SSL"]
|
||||
|
||||
_LongResp = tuple[bytes, list[bytes], int]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user