8000 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
Next Next commit
Update logging LogRecord msg argument
  • Loading branch information
aminalaee authored Mar 21, 2023
commit c0af7af7e4d2fbca26c800d7fcdaebd6d3104dd5
2 changes: 1 addition & 1 deletion stdlib/logging/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ class LogRecord:
level: int,
pathname: str,
lineno: int,
msg: object,
msg: str,
args: _ArgsType | None,
exc_info: _SysExcInfoType | None,
func: str | None = None,
Expand Down
0