Examples/modpython_dbg.py@60022b63b51c
Examples/modpython_dbg.py
Wed, 22 Nov 2017 18:10:58 +0100
- author
- Alexander Barkoff
- date
- Wed, 22 Nov 2017 18:10:58 +0100
- changeset 5990
- 60022b63b51c
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Updated Russian translations.
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