Mercurial > p > roundup > code
comparison roundup/cgi/cgitb.py @ 2005:fc52d57c6c3e
documentation cleanup
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 11 Feb 2004 23:55:10 +0000 |
| parents | 0e19e99075e3 |
| children | cafdf8b7cc69 |
comparison
equal
deleted
inserted
replaced
| 2004:1782fe36e7b8 | 2005:fc52d57c6c3e |
|---|---|
| 1 # | 1 # |
| 2 # This module was written by Ka-Ping Yee, <ping@lfw.org>. | 2 # This module was written by Ka-Ping Yee, <ping@lfw.org>. |
| 3 # | 3 # |
| 4 # $Id: cgitb.py,v 1.9 2003-12-05 03:36:34 richard Exp $ | 4 # $Id: cgitb.py,v 1.10 2004-02-11 23:55:09 richard Exp $ |
| 5 | 5 |
| 6 __doc__ = """ | 6 """Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>. |
| 7 Extended CGI traceback handler by Ka-Ping Yee, <ping@lfw.org>. | |
| 8 """ | 7 """ |
| 8 __docformat__ = 'restructuredtext' | |
| 9 | 9 |
| 10 import sys, os, types, string, keyword, linecache, tokenize, inspect, cgi | 10 import sys, os, types, string, keyword, linecache, tokenize, inspect, cgi |
| 11 import pydoc, traceback | 11 import pydoc, traceback |
| 12 | 12 |
| 13 from roundup.i18n import _ | 13 from roundup.i18n import _ |
