how to find out the OO hierachy via the documentation?

L

Leo

hi all

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

the story: i want do play with the web server classes. so the first task
would be a basic server with SimpleHTTPServer. in the docu i've read about
the test() function but i couldn't find this function in the
SimpleHTTPServer class and even not in the BaseHTTPServer class which might
be the ancestor.

so now i'd like to walk through the OO hierarchy of SimpleHTTPServer...

any help is appreciated!

cheers, leo
 
A

Andrew Bennetts

hi all

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

the story: i want do play with the web server classes. so the first task
would be a basic server with SimpleHTTPServer. in the docu i've read about
the test() function but i couldn't find this function in the
SimpleHTTPServer class and even not in the BaseHTTPServer class which might
be the ancestor.

so now i'd like to walk through the OO hierarchy of SimpleHTTPServer...

The epydoc project (http://epydoc.sf.net/) has generated API docs for the
Python 2.2 standard library with this sort of info in it, e.g.:
http://epydoc.sourceforge.net/stdlib/public/SimpleHTTPServer.SimpleHTTPRequestHandler-class.html

-Andrew.
 
M

Michele Simionato

Leo said:
hi all

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

the story: i want do play with the web server classes. so the first task
would be a basic server with SimpleHTTPServer. in the docu i've read about
the test() function but i couldn't find this function in the
SimpleHTTPServer class and even not in the BaseHTTPServer class which might
be the ancestor.

so now i'd like to walk through the OO hierarchy of SimpleHTTPServer...

any help is appreciated!

cheers, leo

help(SimpleHTTPServer)

Michele Simionato, Ph. D.
(e-mail address removed)
http://www.phyast.pitt.edu/~micheles
--- Currently looking for a job ---
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,538
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top