diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 15:15:49 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 15:15:49 (GMT) |
commit | 84c1205043684542e83e653cbc3863e4d7d9a241 (patch) | |
tree | 4f7a630a40a9108a3ebe375f502933746d534000 /Lib/xml/dom | |
parent | 5395d211f913d88268137f31f09155e9eb996fe8 (diff) | |
parent | 72a98541f0938afb443ce924b7422f8dcfa1f1f9 (diff) | |
download | cpython-84c1205043684542e83e653cbc3863e4d7d9a241.zip cpython-84c1205043684542e83e653cbc3863e4d7d9a241.tar.gz cpython-84c1205043684542e83e653cbc3863e4d7d9a241.tar.bz2 |
merge 3.3 (#19127)
Diffstat (limited to 'Lib/xml/dom')
-rw-r--r-- | 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 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 |