Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
gh-96175: add missing self._localName assignment inxml.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 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
X-Ref:python/typeshed#8590 (comment)This adds a missing assignment to `_localName`
bedevere-bot commentedAug 22, 2022
Most changes to Pythonrequire a NEWS entry. Please add it using theblurb_it web app or theblurb command-line tool. |
ghost commentedAug 22, 2022 • edited by ghost
Loading Uh oh!
There was an error while loading.Please reload this page.
edited by ghost
Uh oh!
There was an error while loading.Please reload this page.
kkirsche commentedAug 22, 2022
JelleZijlstra commentedAug 22, 2022
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 athttps://devguide.python.org/?highlight=blurb#quick-reference. |
kkirsche commentedAug 22, 2022
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. |
bedevere-bot commentedAug 22, 2022
Most changes to Pythonrequire a NEWS entry. Please add it using theblurb_it web app or theblurb command-line tool. |
1 similar comment
bedevere-bot commentedAug 22, 2022
Most changes to Pythonrequire a NEWS entry. Please add it using theblurb_it web app or theblurb command-line tool. |
kkirsche commentedAug 22, 2022
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 |
kkirsche commentedAug 22, 2022 • 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.
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. |
JelleZijlstra commentedAug 22, 2022
The CLA actually seems fine, the check in CI is succeeding. |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Misc/NEWS.d/next/Library/2022-08-22-13-54-20.gh-issue-96175.bH7zGU.rst OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Uh oh!
There was an error while loading.Please reload this page.
miss-islington commentedAug 23, 2022
Thanks@kkirsche for the PR, and@JelleZijlstra for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10, 3.11. |
miss-islington commentedAug 23, 2022
Sorry@kkirsche and@JelleZijlstra, I had trouble checking out the |
JelleZijlstra commentedAug 23, 2022
Thank you for your contribution! |
…nidom.Attr` (pythonGH-96176)X-Ref:https://github.com/python/typeshed/pull/8590GH-discussion_r951473977Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>(cherry picked from commit58f6953)Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
bedevere-bot commentedAug 23, 2022
GH-96212 is a backport of this pull request to the3.10 branch. |
miss-islington commentedAug 23, 2022
Thanks@kkirsche for the PR, and@JelleZijlstra for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11. |
bedevere-bot commentedAug 23, 2022
GH-96213 is a backport of this pull request to the3.11 branch. |
…nidom.Attr` (pythonGH-96176)X-Ref:https://github.com/python/typeshed/pull/8590GH-discussion_r951473977Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>(cherry picked from commit58f6953)Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
…Attr` (GH-96176)X-Ref:https://github.com/python/typeshed/pull/8590GH-discussion_r951473977Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>(cherry picked from commit58f6953)Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
kkirsche commentedAug 23, 2022
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_r951473977Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>(cherry picked from commit58f6953)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>

Uh oh!
There was an error while loading.Please reload this page.
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