Skip to content

Commit e4c2c0f

Browse files
authored
Add SysLogHandler.address attribute (#6037)
1 parent a1ca550 commit e4c2c0f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

stdlib/@python2/logging/handlers.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ class SysLogHandler(Handler):
8484
LOG_LOCAL5: int
8585
LOG_LOCAL6: int
8686
LOG_LOCAL7: int
87+
address: Tuple[str, int] | str # undocumented
8788
unixsocket: bool # undocumented
8889
socktype: SocketKind # undocumented
8990
facility: int # undocumented

stdlib/logging/handlers.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ class SysLogHandler(Handler):
167167
LOG_LOCAL5: int
168168
LOG_LOCAL6: int
169169
LOG_LOCAL7: int
170+
address: tuple[str, int] | str # undocumented
170171
unixsocket: bool # undocumented
171172
socktype: SocketKind # undocumented
172173
ident: str # undocumented

0 commit comments

Comments
 (0)