From: Thomas Wouters Date: Mon, 25 Sep 2000 00:11:37 +0000 (+0000) Subject: Fix inconsistent use of space/tabs. X-Git-Tag: v2.0b2~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84da8aa7e2f1bdaf8692dbfd9981430c84278038;p=python Fix inconsistent use of space/tabs. --- diff --git a/Lib/xml/sax/handler.py b/Lib/xml/sax/handler.py index 0931014cd3..cf266e95cb 100644 --- a/Lib/xml/sax/handler.py +++ b/Lib/xml/sax/handler.py @@ -212,10 +212,10 @@ class DTDHandler: parsing (unparsed entities and attributes).""" def notationDecl(self, name, publicId, systemId): - "Handle a notation declaration event." + "Handle a notation declaration event." def unparsedEntityDecl(self, name, publicId, systemId, ndata): - "Handle an unparsed entity declaration event." + "Handle an unparsed entity declaration event." # ===== ENTITYRESOLVER ===== @@ -228,10 +228,10 @@ class EntityResolver: this interface with the default behaviour.""" def resolveEntity(self, publicId, systemId): - """Resolve the system identifier of an entity and return either + """Resolve the system identifier of an entity and return either the system identifier to read from as a string, or an InputSource to read from.""" - return systemId + return systemId #============================================================================