diff -r 12948ec78ca0 -r c113428ecff3 Examples/modpython_dbg.py --- a/Examples/modpython_dbg.py Thu May 20 19:16:58 2021 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ -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