Examples/modpython_dbg.py@4f9afcd8eb9d
Examples/modpython_dbg.py
Sat, 31 Mar 2012 12:08:28 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sat, 31 Mar 2012 12:08:28 +0200
- changeset 1743
- 4f9afcd8eb9d
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed a unicode issue in the terminal and interpreter shell.
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