#!/usr/bin/python import cgitb; cgitb.enable() txt_file = "crash_example_04.txt" def main(): print "Content-type: text/html" print print "Crashy Python Script" print "" print "

Demonstration of what happens when you crash in your python cgi script & strategies to write better, more robust and debuggable code.


" print "Key elements of this file:
" print "" print "unreachable text" if( __name__ == "__main__"): main() print "more unreachable text" print ""