10000 Update logging LogRecord msg attribute by aminalaee · Pull Request #9914 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Update logging LogRecord msg attribute #9914

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update stdlib/logging/__init__.pyi
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
aminalaee and AlexWaygood authored Mar 21, 2023
commit 2cd7b4cd798fdda1d05792df99fbe99f9433bbd1
2 changes: 1 addition & 1 deletion stdlib/logging/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ class LogRecord:
msecs: float
# Only created when logging.Formatter.format is called. See #6132.
message: str
msg: object
msg: str | Any # The runtime accepts any object, but will be a str in 99% of cases
name: str
pathname: str
process: int | None
Expand Down
0