commit | 61f901c8825e4bcbc5cee45ab0b29111d67e5e86 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Sep 29 11:15:31 2013 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Sep 29 11:15:31 2013 -0400 |
tree | 7ec7e15a02f668892f46d9e6f4a9a869a33ffb1f | |
parent | 0e234e60e6e2c7f570925945ca6f3021b7d19cde [diff] |
remove duplicate method (closes #19127)
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 @@ def _get_localName(self): return self.nodeName.split(":", 1)[-1] - def _get_name(self): - return self.name - def _get_specified(self): return self.specified