Added logging port constants to logging.handlers stub (#2617)

Closes #2616
This commit is contained in:
Keith Gray
2018-11-21 11:08:34 -06:00
committed by Sebastian Rittau
parent 36671663cc
commit f9f4e50004

View File

@@ -19,6 +19,12 @@ if sys.version_info >= (3, 6):
else:
_Path = str
DEFAULT_TCP_LOGGING_PORT: int
DEFAULT_UDP_LOGGING_PORT: int
DEFAULT_HTTP_LOGGING_PORT: int
DEFAULT_SOAP_LOGGING_PORT: int
SYSLOG_UDP_PORT: int
SYSLOG_TCP_PORT: int
class WatchedFileHandler(Handler):
@overload