stdlib: enforce CamelCase for type alias names (#8255)

This commit is contained in:
Alex Waygood
2022-07-07 16:45:23 +01:00
committed by GitHub
parent abea36c069
commit fbddd2c4e2
11 changed files with 107 additions and 108 deletions

View File

@@ -42,7 +42,7 @@ class SMTPChannel(asynchat.async_chat):
conn: socket.socket,
addr: Any,
data_size_limit: int = ...,
map: asyncore._maptype | None = ...,
map: asyncore._MapType | None = ...,
enable_SMTPUTF8: bool = ...,
decode_data: bool = ...,
) -> None: ...
@@ -72,7 +72,7 @@ class SMTPServer(asyncore.dispatcher):
localaddr: _Address,
remoteaddr: _Address,
data_size_limit: int = ...,
map: asyncore._maptype | None = ...,
map: asyncore._MapType | None = ...,
enable_SMTPUTF8: bool = ...,
decode_data: bool = ...,
) -> None: ...