Mercurial > p > roundup > code
diff roundup/cgitb.py @ 406:bdc2ea127ae9
Added module docstrings to all modules.
| author | Jürgen Hermann <jhermann@users.sourceforge.net> |
|---|---|
| date | Thu, 22 Nov 2001 15:46:42 +0000 |
| parents | 76c6994aa4e8 |
| children | fad315a10185 c242455d9b46 |
line wrap: on
line diff
--- a/roundup/cgitb.py Thu Nov 22 15:09:40 2001 +0000 +++ b/roundup/cgitb.py Thu Nov 22 15:46:42 2001 +0000 @@ -1,7 +1,11 @@ # # This module was written by Ka-Ping Yee, <ping@lfw.org>. # -# $Id: cgitb.py,v 1.6 2001-09-29 13:27:00 richard Exp $ +# $Id: cgitb.py,v 1.7 2001-11-22 15:46:42 jhermann Exp $ + +__doc__ = """ +Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>. +""" import sys, os, types, string, keyword, linecache, tokenize, inspect, pydoc @@ -118,6 +122,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.6 2001/09/29 13:27:00 richard +# CGI interfaces now spit up a top-level index of all the instances they can +# serve. +# # Revision 1.5 2001/08/07 00:24:42 richard # stupid typo #
