Examples/modpython_dbg.py@dce841567a6c
Examples/modpython_dbg.py
Sun, 04 Jul 2010 20:48:26 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 04 Jul 2010 20:48:26 +0200
- branch
- 5_0_x
- changeset 385
- dce841567a6c
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed a few bugs.
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