Examples/modpython_dbg.py@ae1ff1ff7709
Examples/modpython_dbg.py
Tue, 07 Jan 2014 09:23:24 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Tue, 07 Jan 2014 09:23:24 +0100
- branch
- 5_4_x
- changeset 3183
- ae1ff1ff7709
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Prepared release 5.4.0 of eric5.
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