Examples/modpython_dbg.py@c72c9b51ae73
Examples/modpython_dbg.py
Sun, 21 Jun 2015 20:18:34 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 21 Jun 2015 20:18:34 +0200
- changeset 4282
- c72c9b51ae73
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed a bug in the editor resulting in an empty QScintilla completion list being shown.
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