summaryrefslogtreecommitdiff
path: root/cgi-server.py
blob: 8d9909cb03a715218163d9fabd68e05a23540747 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python
# 

from CGIHTTPServer import CGIHTTPRequestHandler
import BaseHTTPServer, SimpleHTTPServer

def main ():
    SimpleHTTPServer.test(CGIHTTPRequestHandler, BaseHTTPServer.HTTPServer)

if __name__ == '__main__':
    main()