Mailing List Archive

python/dist/src/Lib/xml/dom minidom.py,1.47,1.48
Update of /cvsroot/python/python/dist/src/Lib/xml/dom
In directory usw-pr-cvs1:/tmp/cvs-serv13148

Modified Files:
minidom.py
Log Message:
Remove bogus assignment to self.length in NamedNodeMap.__delitem__().


Index: minidom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/minidom.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** minidom.py 30 Jun 2002 15:05:00 -0000 1.47
--- minidom.py 2 Jul 2002 17:27:06 -0000 1.48
***************
*** 460,464 ****
del self._attrs[node.name]
del self._attrsNS[(node.namespaceURI, node.localName)]
- self.length = len(self._attrs)

AttributeList = NamedNodeMap
--- 460,463 ----