Examples/modpython_dbg.py@6e8945315cbc
Examples/modpython_dbg.py
Sun, 29 Jul 2012 18:12:50 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 29 Jul 2012 18:12:50 +0200
- branch
- 5_2_x
- changeset 1966
- 6e8945315cbc
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
Fixed a PEP-8 related issue.
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