Examples/modpython_dbg.py@d2bef1e78194
Examples/modpython_dbg.py
Sat, 03 Dec 2016 12:49:53 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 03 Dec 2016 12:49:53 +0100
- branch
- maintenance
- changeset 5356
- d2bef1e78194
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Re-merged with the default branch.
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