Skip to content

Commit 9c0218e

Browse files
authored
Add merge_extra attribute to LoggerAdapter (python#14197)
1 parent cf8e364 commit 9c0218e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/logging/__init__.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,9 @@ class LoggerAdapter(Generic[_L]):
373373
else:
374374
extra: Mapping[str, object]
375375

376+
if sys.version_info >= (3, 13):
377+
merge_extra: bool
378+
376379
def process(self, msg: Any, kwargs: MutableMapping[str, Any]) -> tuple[Any, MutableMapping[str, Any]]: ...
377380
def debug(
378381
self,

0 commit comments

Comments
 (0)