Examples/modpython_dbg.py@12948ec78ca0
Examples/modpython_dbg.py
Thu, 20 May 2021 19:16:58 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 20 May 2021 19:16:58 +0200
- branch
- eric7
- changeset 8333
- 12948ec78ca0
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
E5ProgressDialog: corrected an 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