Examples/modpython_dbg.py@764c317915bc
Examples/modpython_dbg.py
Sun, 05 May 2013 18:21:40 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 05 May 2013 18:21:40 +0200
- branch
- 5_3_x
- changeset 2644
- 764c317915bc
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Prepared release 5.3.3.
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