http://hg.python.org/cpython/rev/b76e1b58ed45 changeset: 85847:b76e1b58ed45 branch: 3.3 parent: 85844:9d4d9e945f29 user: Benjamin Peterson <benjamin at python.org> date: Sun Sep 29 11:15:31 2013 -0400 summary: remove duplicate method (closes #19127) files: 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 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -370,9 +370,6 @@ except AttributeError: return self.nodeName.split(":", 1)[-1] - def _get_name(self): - return self.name - def _get_specified(self): return self.specified -- Repository URL: http://hg.python.org/cpython