-
-
Notifications
You must be signed in to change notification settings - Fork 33.3k
gh-134360 Add processName attribute to logging.Formatter docstring
#134371
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
Conversation
add processName to logging.Formatter docstring
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
|
Thanks @SofieTorch for the PR, and @vsajip for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
|
Thanks @SofieTorch for the PR, and @vsajip for merging it 🌮🎉.. I'm working now to backport this PR to: 3.14. |
…tring (pythonGH-134371) (cherry picked from commit c740fe3) Co-authored-by: Sofia Toro <[email protected]>
…tring (pythonGH-134371) (cherry picked from commit c740fe3) Co-authored-by: Sofia Toro <[email protected]>
|
GH-134404 is a backport of this pull request to the 3.13 branch. |
|
GH-134405 is a backport of this pull request to the 3.14 branch. |
…string (GH-134371) (GH-134404) Co-authored-by: Sofia Toro <[email protected]>
…string (GH-134371) (GH-134405) Co-authored-by: Sofia Toro <[email protected]>
As the issue #134360 suggests, the
Formatterclass was missing theprocessNameattribute inside its docstring.I've added the attribute to the docstring and made sure that it actually is in the
LogRecordclass. Now it is just as in the LogRecord attributes section of the Python documentation.logging.Formatterdocstring missing processName attribute. #134360