From: Skip Montanaro Date: Thu, 6 Jul 2000 02:55:41 +0000 (+0000) Subject: fix indentation in three docstrings X-Git-Tag: v2.0b1~1066 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2dccfbc094df7e017520720a103342c90766491;p=thirdparty%2FPython%2Fcpython.git fix indentation in three docstrings --- diff --git a/Lib/xml/sax/handler.py b/Lib/xml/sax/handler.py index cbbb959379dc..27b19f9198f5 100644 --- a/Lib/xml/sax/handler.py +++ b/Lib/xml/sax/handler.py @@ -26,15 +26,15 @@ class ErrorHandler: only parameter.""" def error(self, exception): - "Handle a recoverable error." + "Handle a recoverable error." raise exception def fatalError(self, exception): - "Handle a non-recoverable error." + "Handle a non-recoverable error." raise exception def warning(self, exception): - "Handle a warning." + "Handle a warning." print exception # ===== CONTENTHANDLER =====