From acfaa70aa792235bfe9fef29b8aa1971104083ec Mon Sep 17 00:00:00 2001 From: Stanislav Levin Date: Fri, 2 Apr 2021 14:20:36 +0300 Subject: [PATCH] [stdlib] Add MININT and MAXINT for xmlrpc.client (#5173) These constants are in this module since Python3.0 Signed-off-by: Stanislav Levin --- stdlib/xmlrpc/client.pyi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stdlib/xmlrpc/client.pyi b/stdlib/xmlrpc/client.pyi index d90012e18..b0c615063 100644 --- a/stdlib/xmlrpc/client.pyi +++ b/stdlib/xmlrpc/client.pyi @@ -19,6 +19,9 @@ _HostType = Union[Tuple[str, Dict[str, str]], str] def escape(s: str) -> str: ... # undocumented +MAXINT: int # undocumented +MININT: int # undocumented + PARSE_ERROR: int # undocumented SERVER_ERROR: int # undocumented APPLICATION_ERROR: int # undocumented