From: Fred Drake Date: Fri, 15 Mar 2002 14:37:44 +0000 (+0000) Subject: Wrap a couple of long lines. X-Git-Tag: v2.2.1c1~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=93cd54005f792e9f878b3937dd419125d6301132;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 e258472ca8df..98f8ec254044 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')