Examples/modpython_dbg.py@a233627a5e25
Examples/modpython_dbg.py
Wed, 30 Sep 2020 19:36:46 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 30 Sep 2020 19:36:46 +0200
- changeset 7728
- a233627a5e25
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Updated source docu.
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