Examples/modpython_dbg.py@83e110e3fcc6
Examples/modpython_dbg.py
Wed, 29 May 2019 19:44:55 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Wed, 29 May 2019 19:44:55 +0200
- changeset 7025
- 83e110e3fcc6
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
BreakPointModel, WatchPointModel: fixed a potential issue deleting breakpoints/watchpoints.
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