[issue8937] SimpleHTTPServer should contain usage example

2010-06-17 Thread anatoly techtonik
anatoly techtonik added the comment: And I am not RDM. =) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue8937] SimpleHTTPServer should contain usage example

2010-06-17 Thread anatoly techtonik
anatoly techtonik added the comment: The example is really helpful. I was surprised to learn that SimpleHTTPServer can be called from command line with port argument. I thought it is only for testing. Another missed aspect is that it is possible to use SimpleHTTPRequestHandler with TCPServer,

[issue8937] SimpleHTTPServer should contain usage example

2010-06-17 Thread Senthil Kumaran
Senthil Kumaran added the comment: Yes, I felt the same way and that is the reason for providing extra example snippets in the same Documentation. I hope you checked that one. -- ___ Python tracker

[issue8937] SimpleHTTPServer should contain usage example

2010-06-17 Thread anatoly techtonik
anatoly techtonik added the comment: Thank you. The wording can surely be improved, but it is much better than nothing. I'd reword the first para further: > The :func:`test` function in the :mod:`SimpleHTTPServer` module is an example > of using :class:`SimpleHTTPRequestHandler` with :class

[issue8937] SimpleHTTPServer should contain usage example

2010-06-16 Thread Senthil Kumaran
Senthil Kumaran added the comment: Merged into other branches in r82020, r82022 and r82023. -- status: open -> closed ___ Python tracker ___ _

[issue8937] SimpleHTTPServer should contain usage example

2010-06-16 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in r82018. -- nosy: +orsenthil resolution: -> fixed stage: -> committed/rejected ___ Python tracker ___ ___

[issue8937] SimpleHTTPServer should contain usage example

2010-06-07 Thread anatoly techtonik
New submission from anatoly techtonik : Currently SimpleHTTPServer docs contains phrase "For example usage, see the implementation of the test() function." with no reference where this test() function is located. This is not user friendly. -- assignee: d...@python components: Documenta