Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1380:5dcad8eb2a02
Bug #1560: Test pages do repeat. Note that the result XML will have their IDs repeated.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Thu, 11 Feb 2016 17:28:27 +0000 |
parents | 279930a008ca |
children |
line wrap: on
line source
import SimpleHTTPServer import SocketServer PORT = 8080 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd.serve_forever()