From e3ea71c018223b6d596bb7ac12641736446f8f3f Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Tue, 21 Dec 2021 23:49:35 -0800 Subject: [PATCH] Add comment to LogRecord.message (#6654) --- stdlib/logging/__init__.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/logging/__init__.pyi b/stdlib/logging/__init__.pyi index 5be934b4f..7d4fa2791 100644 --- a/stdlib/logging/__init__.pyi +++ b/stdlib/logging/__init__.pyi @@ -336,6 +336,7 @@ class LogRecord: lineno: int module: str msecs: float + # Only created when logging.Formatter.format is called. See #6132. message: str msg: str name: str