Merged revisions 80849 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80849 | r.david.murray | 2010-05-05 20:59:04 -0400 (Wed, 05 May 2010) | 4 lines

  Have the serve.py script announce the directory it is
  serving and which port it is serving it on (I can
  never remember the default port number it uses...)
........
This commit is contained in:
R. David Murray 2010-05-06 01:09:27 +00:00
parent 8c62be88e6
commit 71adcac1a2
1 changed files with 1 additions and 0 deletions

View File

@ -28,4 +28,5 @@ if __name__ == '__main__':
path = sys.argv[1]
port = int(sys.argv[2]) if len(sys.argv) > 2 else 8000
httpd = simple_server.make_server('', port, app)
print("Serving {} on port {}".format(path, port))
httpd.serve_forever()