summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-08-23 17:18:19 (GMT)
committerGitHub <noreply@github.com>2022-08-23 17:18:19 (GMT)
commitd7eea0f1ca29b143f070b36d8df8e278dc302a90 (patch)
tree54b67014b02fdcd59e44f2da698b0556d9687aed /Misc
parent0aed1e71f3bd6cf298b08cf82078b013a32362c2 (diff)
downloadcpython-d7eea0f1ca29b143f070b36d8df8e278dc302a90.zip
cpython-d7eea0f1ca29b143f070b36d8df8e278dc302a90.tar.gz
cpython-d7eea0f1ca29b143f070b36d8df8e278dc302a90.tar.bz2
gh-96175: add missing self._localName assignment in `xml.dom.minidom.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 58f6953d6d3fe20d972bfa2f6e982206adcf1353) Co-authored-by: Kevin Kirsche <Kev.Kirsche+GitHub@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-08-22-13-54-20.gh-issue-96175.bH7zGU.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-08-22-13-54-20.gh-issue-96175.bH7zGU.rst b/Misc/NEWS.d/next/Library/2022-08-22-13-54-20.gh-issue-96175.bH7zGU.rst
new file mode 100644
index 0000000..c34eff2
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-08-22-13-54-20.gh-issue-96175.bH7zGU.rst
@@ -0,0 +1 @@
+Fix unused ``localName`` parameter in the ``Attr`` class in :mod:`xml.dom.minidom`.