diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 11:15:31 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 11:15:31 -0400 |
commit | 72a98541f0938afb443ce924b7422f8dcfa1f1f9 (patch) | |
tree | 398126c3090404723cf62e7fbbbb65ddad1f4334 /Lib/xml | |
parent | 56b143d7580b06a4e6bd4d5e16a5ba1cff45f534 (diff) | |
download | cpython-git-72a98541f0938afb443ce924b7422f8dcfa1f1f9.tar.gz |
remove duplicate method (closes #19127)
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/dom/minidom.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 55c4ce11c2..6f71631464 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -370,9 +370,6 @@ class Attr(Node): except AttributeError: return self.nodeName.split(":", 1)[-1] - def _get_name(self): - return self.name - def _get_specified(self): return self.specified |