mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
fix indentation in three docstrings
This commit is contained in:
parent
191a28218f
commit
a2dccfbc09
1 changed files with 3 additions and 3 deletions
|
@ -26,15 +26,15 @@ class ErrorHandler:
|
||||||
only parameter."""
|
only parameter."""
|
||||||
|
|
||||||
def error(self, exception):
|
def error(self, exception):
|
||||||
"Handle a recoverable error."
|
"Handle a recoverable error."
|
||||||
raise exception
|
raise exception
|
||||||
|
|
||||||
def fatalError(self, exception):
|
def fatalError(self, exception):
|
||||||
"Handle a non-recoverable error."
|
"Handle a non-recoverable error."
|
||||||
raise exception
|
raise exception
|
||||||
|
|
||||||
def warning(self, exception):
|
def warning(self, exception):
|
||||||
"Handle a warning."
|
"Handle a warning."
|
||||||
print exception
|
print exception
|
||||||
|
|
||||||
# ===== CONTENTHANDLER =====
|
# ===== CONTENTHANDLER =====
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue