summaryrefslogtreecommitdiff
path: root/Lib/cgitb.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-12-19 14:27:41 +0000
committerFred Drake <fdrake@acm.org>2001-12-19 14:27:41 +0000
commit4f5b49fb56627c99defad8c6fdff869af796eed9 (patch)
tree9c654730175a859ea471bf88c054a1013807a6e9 /Lib/cgitb.py
parent0d1536654d9c7b1d9cfa0d07aea83d89a75f48ba (diff)
downloadcpython-git-4f5b49fb56627c99defad8c6fdff869af796eed9.tar.gz
Make the module docstring agree with reality: the module prvides the
"handler()" function, not the "handle()" function.
Diffstat (limited to 'Lib/cgitb.py')
-rw-r--r--Lib/cgitb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cgitb.py b/Lib/cgitb.py
index 619bdfc25a..381fb7b8e7 100644
--- a/Lib/cgitb.py
+++ b/Lib/cgitb.py
@@ -13,7 +13,7 @@ at the top of your CGI script. The optional arguments to enable() are:
By default, tracebacks are displayed but not saved, and context is 5.
Alternatively, if you have caught an exception and want cgitb to display it
-for you, call cgitb.handle(). The optional argument to handle() is a 3-item
+for you, call cgitb.handler(). The optional argument to handler() is a 3-item
tuple (etype, evalue, etb) just like the value of sys.exc_info()."""
__author__ = 'Ka-Ping Yee'