From: Fred Drake Date: Fri, 15 Mar 2002 14:37:23 +0000 (+0000) Subject: Wrap a couple of long lines. X-Git-Tag: v2.3c1~6482 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15b6893d95e5cc1541fa2fbcf86f450fbc5da70f;p=thirdparty%2FPython%2Fcpython.git Wrap a couple of long lines. --- diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 963b6d03db10..085f0eb7b10a 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -587,7 +587,8 @@ class Element(Node): return _getElementsByTagNameHelper(self, name, NodeList()) def getElementsByTagNameNS(self, namespaceURI, localName): - return _getElementsByTagNameNSHelper(self, namespaceURI, localName, NodeList()) + return _getElementsByTagNameNSHelper(self, namespaceURI, localName, + NodeList()) def __repr__(self): return "" % (self.tagName, id(self)) @@ -935,7 +936,8 @@ class Document(Node): return _getElementsByTagNameHelper(self, name, NodeList()) def getElementsByTagNameNS(self, namespaceURI, localName): - return _getElementsByTagNameNSHelper(self, namespaceURI, localName, NodeList()) + return _getElementsByTagNameNSHelper(self, namespaceURI, localName, + NodeList()) def writexml(self, writer, indent="", addindent="", newl=""): writer.write('\n')