This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author fxkr
Recipients fxkr
Date 2015-08-20.12:43:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440074614.12.0.491243146535.issue24902@psf.upfronthosting.co.za>
In-reply-to
Content
http.server: on startup, show host/port as URL

Old:

% python3 -m http.server
Serving HTTP on 0.0.0.0 port 8000 ...

New:

% ./python -m http.server  
Serving http://0.0.0.0:8000/ ...

This is useful because (modern) terminals will auto-detect URLs and make them clickable, so printing an URL makes it easier to navigate the browser there.
History
Date User Action Args
2015-08-20 12:43:34fxkrsetrecipients: + fxkr
2015-08-20 12:43:34fxkrsetmessageid: <1440074614.12.0.491243146535.issue24902@psf.upfronthosting.co.za>
2015-08-20 12:43:34fxkrlinkissue24902 messages
2015-08-20 12:43:33fxkrcreate