Python Documentation (should be better?)

Skip Montanaro skip at pobox.com
Fri May 13 15:31:37 EDT 2005


    bruno> I fail to see why would it would be better to have to open a
    bruno> browser, go to python.org, go to the doc, find the right link etc
    bruno> instead of just typing dir(xxx) and/or help(xxx).

Actually, you frequently don't even have to enter the Python interpreter.
Executing "pydoc -p 8080" will start up a web server at
http://localhost:8080/ that will allow you to browse the builtin docs
(module/package/class/function docstrings).  Since 2.4, the doc display for
most core modules and packages should also contain a link to the standard
doc.

Skip




More information about the Python-list mailing list