Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-134360 Add processName attribute tologging.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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
add processName to logging.Formatter docstring
python-cla-botbot commentedMay 20, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
c740fe3
intopython:mainUh oh!
There was an error while loading.Please reload this page.
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 commitc740fe3)Co-authored-by: Sofia Toro <sofie.torch@outlook.com>
…tring (pythonGH-134371)(cherry picked from commitc740fe3)Co-authored-by: Sofia Toro <sofie.torch@outlook.com>
GH-134404 is a backport of this pull request to the3.13 branch. |
GH-134405 is a backport of this pull request to the3.14 branch. |
Uh oh!
There was an error while loading.Please reload this page.
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 theLogRecord attributes section of the Python documentation.logging.Formatter
docstring missing processName attribute. #134360