Examples/modpython_dbg.py@9233b51b54d1
Examples/modpython_dbg.py
Wed, 06 Jan 2010 19:24:47 +0000
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 06 Jan 2010 19:24:47 +0000
- changeset 24
- 9233b51b54d1
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed a copy-paste bug.
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