-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
gh-96175: add missing self._localName assignment in xml.dom.minidom.Attr
#96176
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
X-Ref: python/typeshed#8590 (comment) This adds a missing assignment to `_localName`
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
Thank you! cc @ambv for the CLA bot throwing a 500. Could you add a unit test and a NEWS entry? You can use blurb as documented under 8 at https://devguide.python.org/?highlight=blurb#quick-reference. |
I'll give it my best shot, I have that cloning so I can add those in after my next meeting this afternoon. Thanks for the opportunity to contribute this to cpython, it's a project where the must have an issue requirement in the contributing guide has kept me away in the past. |
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
1 similar comment
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
I've added my attempt at this. If I did anything incorrectly or without enough detail, please let me know. It may also be useful to give an example in |
I have tried to sign the CLA, but have been unable to. Sometimes it shows up as signed, other times it doesn't, so wanted to comment here explicitly. |
The CLA actually seems fine, the check in CI is succeeding. |
Misc/NEWS.d/next/Library/2022-08-22-13-54-20.gh-issue-96175.bH7zGU.rst
Outdated
Show resolved
Hide resolved
Co-authored-by: Jelle Zijlstra <[email protected]>
Thanks @kkirsche for the PR, and @JelleZijlstra for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10, 3.11. |
Sorry @kkirsche and @JelleZijlstra, I had trouble checking out the |
Thank you for your contribution! |
…nidom.Attr` (pythonGH-96176) X-Ref: https://github.com/python/typeshed/pull/8590GH-discussion_r951473977 Co-authored-by: Jelle Zijlstra <[email protected]> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <[email protected]>
GH-96212 is a backport of this pull request to the 3.10 branch. |
Thanks @kkirsche for the PR, and @JelleZijlstra for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11. |
GH-96213 is a backport of this pull request to the 3.11 branch. |
…nidom.Attr` (pythonGH-96176) X-Ref: https://github.com/python/typeshed/pull/8590GH-discussion_r951473977 Co-authored-by: Jelle Zijlstra <[email protected]> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <[email protected]>
…Attr` (GH-96176) X-Ref: https://github.com/python/typeshed/pull/8590GH-discussion_r951473977 Co-authored-by: Jelle Zijlstra <[email protected]> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <[email protected]>
Thank you for your time reviewing this and your patience explaining why decisions are being made as I learn more about CPython. |
…Attr` (GH-96176) X-Ref: https://github.com/python/typeshed/pull/8590GH-discussion_r951473977 Co-authored-by: Jelle Zijlstra <[email protected]> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <[email protected]>
…nidom.Attr` (python#96176) X-Ref: python/typeshed#8590 (comment) Co-authored-by: Jelle Zijlstra <[email protected]>
Fixes: #96175
X-Ref: python/typeshed#8590 (comment)
This adds a missing assignment to
_localName
xml.dom.minidom:Attr.__init__
doesn't use localName variable. #96175