Examples/modpython_dbg.py@2e98a3705f15
Examples/modpython_dbg.py
Sun, 13 Apr 2014 16:21:30 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 13 Apr 2014 16:21:30 +0200
- changeset 3503
- 2e98a3705f15
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
A little fix for the project.
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