diff options
author | Thomas Wouters <thomas@python.org> | 2000-09-25 00:11:37 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-09-25 00:11:37 (GMT) |
commit | 84da8aa7e2f1bdaf8692dbfd9981430c84278038 (patch) | |
tree | a4e42643553efbc22a2860aad3cba8b3402463ca /Lib | |
parent | f367cacb98ce3fcd1653546835dff3c3cbf5216a (diff) | |
download | cpython-84da8aa7e2f1bdaf8692dbfd9981430c84278038.zip cpython-84da8aa7e2f1bdaf8692dbfd9981430c84278038.tar.gz cpython-84da8aa7e2f1bdaf8692dbfd9981430c84278038.tar.bz2 |
Fix inconsistent use of space/tabs.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/xml/sax/handler.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/xml/sax/handler.py b/Lib/xml/sax/handler.py index 0931014..cf266e9 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 #============================================================================ |