--- a/Examples/modpython.py Thu May 20 19:16:58 2021 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-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