Examples/modpython_dbg.py@4f20dba37ab6
Examples/modpython_dbg.py
Wed, 11 Mar 2015 18:32:27 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 11 Mar 2015 18:32:27 +0100
- changeset 4172
- 4f20dba37ab6
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Updated Pygments to 2.0.2.
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