Examples/modpython_dbg.py

Sat, 02 May 2020 14:04:18 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 02 May 2020 14:04:18 +0200
changeset 7562
0f25563f8ff4
parent 0
de9c2efb9d02
permissions
-rw-r--r--

setup.py: corrected the links to the source code repository and the issues tracker.

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