home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-python-addon-1.4.9-installer.exe / xa.py < prev    next >
Encoding:
Python Source  |  2004-03-18  |  140 b   |  5 lines

  1. from mod_python import apache
  2. def handler(req):
  3.         req.content_type = "text/html"
  4.         req.write("OK")    
  5.         return apache.OK