From 72a98541f0938afb443ce924b7422f8dcfa1f1f9 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 29 Sep 2013 11:15:31 -0400 Subject: 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 55c4ce1..6f71631 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -370,9 +370,6 @@ class Attr(Node): except AttributeError: return self.nodeName.split(":", 1)[-1] - def _get_name(self): - return self.name - def _get_specified(self): return self.specified -- cgit v0.12