Stdlib: add some very large integer defaults (#9651)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Alex Waygood
2023-02-01 20:10:28 +00:00
committed by GitHub
parent 8000fbd386
commit 35172c7aab
4 changed files with 5 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ class SMTPChannel(asynchat.async_chat):
server: SMTPServer,
conn: socket.socket,
addr: Any,
data_size_limit: int = ...,
data_size_limit: int = 33554432,
map: asyncore._MapType | None = None,
enable_SMTPUTF8: bool = False,
decode_data: bool = False,
@@ -71,7 +71,7 @@ class SMTPServer(asyncore.dispatcher):
self,
localaddr: _Address,
remoteaddr: _Address,
data_size_limit: int = ...,
data_size_limit: int = 33554432,
map: asyncore._MapType | None = None,
enable_SMTPUTF8: bool = False,
decode_data: bool = False,