From 61f901c8825e4bcbc5cee45ab0b29111d67e5e86 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 29 Sep 2013 11:15:31 -0400 Subject: [PATCH] remove duplicate method (closes #19127) --- Lib/xml/dom/minidom.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index f8ed232fb2..c30e2462ee 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 -- 2.50.1