Examples/modpython_dbg.py@06f57a834adf
Examples/modpython_dbg.py
Wed, 01 Jan 2014 14:39:32 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 01 Jan 2014 14:39:32 +0100
- branch
- Py2 comp.
- changeset 3161
- 06f57a834adf
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Updated copyright for 2014.
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