[Python-checkins] r46800 - python/trunk/Lib/wsgiref/simple_server.py

andrew.kuchling python-checkins at python.org
Fri Jun 9 21:43:26 CEST 2006


Author: andrew.kuchling
Date: Fri Jun  9 21:43:25 2006
New Revision: 46800

Modified:
   python/trunk/Lib/wsgiref/simple_server.py
Log:
Remove unused variable

Modified: python/trunk/Lib/wsgiref/simple_server.py
==============================================================================
--- python/trunk/Lib/wsgiref/simple_server.py	(original)
+++ python/trunk/Lib/wsgiref/simple_server.py	Fri Jun  9 21:43:25 2006
@@ -184,7 +184,6 @@
 
 
 if __name__ == '__main__':
-    server_address = ('', 8000)
     httpd = make_server('', 8000, demo_app)
     sa = httpd.socket.getsockname()
     print "Serving HTTP on", sa[0], "port", sa[1], "..."


More information about the Python-checkins mailing list