Examples/modpython_dbg.py@ac64f16bd6c9
Examples/modpython_dbg.py
Mon, 19 Aug 2013 11:12:05 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Mon, 19 Aug 2013 11:12:05 +0200
- branch
- 5_3_x
- changeset 2851
- ac64f16bd6c9
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Prepared new release.
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