Examples/modpython_dbg.py

Thu, 19 Dec 2013 14:33:02 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 19 Dec 2013 14:33:02 +0100
branch
5_3_x
changeset 3151
0b3b451320f6
parent 0
de9c2efb9d02
permissions
-rw-r--r--

Fixed an issue checking syntax errors and flakes issues with Python 2 files.

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

eric ide

mercurial