--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Examples/modpython_dbg.py Mon Dec 28 16:03:33 2009 +0000 @@ -0,0 +1,10 @@ +from mod_python import apache + +apache.initDebugger('/Path/To/modpython_dbg.py') + +def handler(req): + req.content_type = "text/plain" + req.send_http_header() + req.write("Hello World!\n") + + return apache.OK