[Python-checkins] cpython (2.7): remove duplicate method (closes #19127)

benjamin.peterson python-checkins at python.org
Sun Sep 29 17:16:48 CEST 2013


http://hg.python.org/cpython/rev/792006307d6d
changeset:   85848:792006307d6d
branch:      2.7
parent:      85845:61ae31665ee1
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
@@ -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
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list