[Python-checkins] CVS: python/dist/src/Lib/xml/dom minidom.py,1.43.6.1,1.43.6.2
Fred L. Drake
fdrake@users.sourceforge.net
Fri, 15 Mar 2002 06:37:46 -0800
Update of /cvsroot/python/python/dist/src/Lib/xml/dom
In directory usw-pr-cvs1:/tmp/cvs-serv9504/xml/dom
Modified Files:
Tag: release22-maint
minidom.py
Log Message:
Wrap a couple of long lines.
Index: minidom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/minidom.py,v
retrieving revision 1.43.6.1
retrieving revision 1.43.6.2
diff -C2 -d -r1.43.6.1 -r1.43.6.2
*** minidom.py 15 Mar 2002 13:53:20 -0000 1.43.6.1
--- minidom.py 15 Mar 2002 14:37:44 -0000 1.43.6.2
***************
*** 588,592 ****
def getElementsByTagNameNS(self, namespaceURI, localName):
! return _getElementsByTagNameNSHelper(self, namespaceURI, localName, NodeList())
def __repr__(self):
--- 588,593 ----
def getElementsByTagNameNS(self, namespaceURI, localName):
! return _getElementsByTagNameNSHelper(self, namespaceURI, localName,
! NodeList())
def __repr__(self):
***************
*** 936,940 ****
def getElementsByTagNameNS(self, namespaceURI, localName):
! return _getElementsByTagNameNSHelper(self, namespaceURI, localName, NodeList())
def writexml(self, writer, indent="", addindent="", newl=""):
--- 937,942 ----
def getElementsByTagNameNS(self, namespaceURI, localName):
! return _getElementsByTagNameNSHelper(self, namespaceURI, localName,
! NodeList())
def writexml(self, writer, indent="", addindent="", newl=""):