[Python-checkins] CVS: python/dist/src/Lib cgitb.py,1.3,1.4

Fred L. Drake fdrake@users.sourceforge.net
Wed, 19 Dec 2001 06:27:43 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv1652/Lib

Modified Files:
	cgitb.py 
Log Message:
Make the module docstring agree with reality: the module prvides the
"handler()" function, not the "handle()" function.


Index: cgitb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/cgitb.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** cgitb.py	2001/12/04 18:45:17	1.3
--- cgitb.py	2001/12/19 14:27:41	1.4
***************
*** 14,18 ****
  
  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
  tuple (etype, evalue, etb) just like the value of sys.exc_info()."""
  
--- 14,18 ----
  
  Alternatively, if you have caught an exception and want cgitb to display it
! 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()."""