From: Benjamin Peterson Date: Sun, 29 Sep 2013 15:15:31 +0000 (-0400) Subject: remove duplicate method (closes #19127) X-Git-Tag: v2.7.6rc1~132 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61f901c8825e4bcbc5cee45ab0b29111d67e5e86;p=thirdparty%2FPython%2Fcpython.git remove duplicate method (closes #19127) --- diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index f8ed232fb2e1..c30e2462ee9a 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