Mercurial > hg > webaudioevaluationtool
view pythonServer-legacy.py @ 1369:ebe6c10bd52d
Bug #1395: Test timer is reset on each new test page.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Tue, 02 Feb 2016 11:03:01 +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()