Examples/modpython.py@dd3dea7c4d5f
Examples/modpython.py
Thu, 05 Dec 2019 19:44:27 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 05 Dec 2019 19:44:27 +0100
- branch
- maintenance
- changeset 7350
- dd3dea7c4d5f
- parent 0
-
de9c2efb9d02
- permissions
- -rw-r--r--
QsciScintillaCompat: fixed (hopefully) a focus related issue causing completion list to stay.
(grafted from 79ae0af9558af62fe4b16eaa00e5957d31d6c6ac)
from mod_python import apache
def handler(req):
req.content_type = "text/plain"
req.send_http_header()
req.write("Hello World!\n")
return apache.OK