-
-
Notifications
You must be signed in to change notification settings - Fork 32k
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 <sofie.torch@outlook.com>
…tring (pythonGH-134371) (cherry picked from commit c740fe3) Co-authored-by: Sofia Toro <sofie.torch@outlook.com>
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. |
As the issue #134360 suggests, the
Formatter
class was missing theprocessName
attribute inside its docstring.I've added the attribute to the docstring and made sure that it actually is in the
LogRecord
class. Now it is just as in the LogRecord attributes section of the Python documentation.logging.Formatter
docstring missing processName attribute. #134360