Examples/modpython_dbg.py@95e943b46fa6
Examples/modpython_dbg.py
Wed, 26 Oct 2016 19:21:25 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 26 Oct 2016 19:21:25 +0200
- changeset 5275
- 95e943b46fa6
- 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