Examples/modpython_dbg.py@da303ad1474e
Examples/modpython_dbg.py
Sat, 05 Dec 2015 16:06:05 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 05 Dec 2015 16:06:05 +0100
- branch
- 6_1_x
- changeset 4606
- da303ad1474e
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Prepared first stable release of eric 6.1.
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