how to find out the OO hierachy via the documentation?

Peter Otten __peter__ at web.de
Fri Aug 29 04:26:59 EDT 2003


Leo wrote:

> newbie question: how do i find out the OO hierarchy of a class in the
> python docu?
You can use

pydoc -p 9999

or on Windows perhaps

python c:\path\to\python\pydoc.py -p 9999

on the command line and then access documentation generated on the fly with
your preferred browser:

http://localhost:9999/SimpleHTTPServer.html

Peter




More information about the Python-list mailing list