gh-96175: add missing self._localName assignment in xml.dom.minidom.Attr#96176
gh-96175: add missing self._localName assignment in xml.dom.minidom.Attr#96176JelleZijlstra merged 10 commits intopython:mainfrom
xml.dom.minidom.Attr#96176Conversation
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 <jelle.zijlstra@gmail.com>
|
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 <jelle.zijlstra@gmail.com> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
|
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 <jelle.zijlstra@gmail.com> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
…Attr` (GH-96176) X-Ref: https://github.com/python/typeshed/pull/8590GH-discussion_r951473977 Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
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 <jelle.zijlstra@gmail.com> (cherry picked from commit 58f6953) Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
…nidom.Attr` (python#96176) X-Ref: python/typeshed#8590 (comment) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>

Fixes: #96175
X-Ref: python/typeshed#8590 (comment)
This adds a missing assignment to
_localNamexml.dom.minidom:Attr.__init__doesn't use localName variable. #96175