Class browser for Python:
=========================

The program in this file contains a class browser for Python modules.
The code uses the Window module in the X11/Lib directory and a new
module pyclbr in the Python/Lib directory.

Usage:
	python pybrowse.py module [ PYTHONPATH ]

where module is the name of a module and PYTHONPATH an optional search
path for modules.

This will display a window with three lists.  The top left list is a
list of class names.  When a name is selected, the bottom left list
displays the names of the class and its superclasses.  When one or
more of these classes are selected, the list on the right shows a list
of methods of these classes.  When a method is double clicked, a
window is popped up which shows the definition of the method.
