Commit 84da8aa7 authored by Thomas Wouters's avatar Thomas Wouters

Fix inconsistent use of space/tabs.

parent f367cacb
...@@ -212,10 +212,10 @@ class DTDHandler: ...@@ -212,10 +212,10 @@ class DTDHandler:
parsing (unparsed entities and attributes).""" parsing (unparsed entities and attributes)."""
def notationDecl(self, name, publicId, systemId): def notationDecl(self, name, publicId, systemId):
"Handle a notation declaration event." "Handle a notation declaration event."
def unparsedEntityDecl(self, name, publicId, systemId, ndata): def unparsedEntityDecl(self, name, publicId, systemId, ndata):
"Handle an unparsed entity declaration event." "Handle an unparsed entity declaration event."
# ===== ENTITYRESOLVER ===== # ===== ENTITYRESOLVER =====
...@@ -228,10 +228,10 @@ class EntityResolver: ...@@ -228,10 +228,10 @@ class EntityResolver:
this interface with the default behaviour.""" this interface with the default behaviour."""
def resolveEntity(self, publicId, systemId): 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 the system identifier to read from as a string, or an InputSource
to read from.""" to read from."""
return systemId return systemId
#============================================================================ #============================================================================
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment