Examples/modpython_dbg.py@a91cba8291b9
Examples/modpython_dbg.py
Mon, 25 Mar 2013 03:28:43 +0100
- author
- T.Rzepka <Tobias.Rzepka@gmail.com>
- date
- Mon, 25 Mar 2013 03:28:43 +0100
- branch
- Py2 comp.
- changeset 2526
- a91cba8291b9
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Minimum modifications to start Eric5 with Py2.
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