summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-09-29 15:15:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-09-29 15:15:31 (GMT)
commit61f901c8825e4bcbc5cee45ab0b29111d67e5e86 (patch)
tree7ec7e15a02f668892f46d9e6f4a9a869a33ffb1f /Lib/xml
parent0e234e60e6e2c7f570925945ca6f3021b7d19cde (diff)
downloadcpython-61f901c8825e4bcbc5cee45ab0b29111d67e5e86.zip
cpython-61f901c8825e4bcbc5cee45ab0b29111d67e5e86.tar.gz
cpython-61f901c8825e4bcbc5cee45ab0b29111d67e5e86.tar.bz2
remove duplicate method (closes #19127)
Diffstat (limited to 'Lib/xml')
-rw-r--r--Lib/xml/dom/minidom.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py
index f8ed232..c30e246 100644
--- a/Lib/xml/dom/minidom.py
+++ b/Lib/xml/dom/minidom.py
@@ -358,9 +358,6 @@ class Attr(Node):
def _get_localName(self):
return self.nodeName.split(":", 1)[-1]
- def _get_name(self):
- return self.name
-
def _get_specified(self):
return self.specified