"Denis Bilenko" <[EMAIL PROTECTED]> writes:
>     port = sys.argv.get(1) or 8000

I like the suggestion, except it should be

     port = int(sys.argv.get(1, '8000'))

one could imagine your example going wrong in a protocol where 0 is
a valid port number.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to