This directory contains examples for Python

All of these examples use the file Makefile.template
in the top level directory. You may need to edit this
file by hand if it is incorrect.

If you are using dynamic loading, you can build each example
by typing 'make'.     If your machine does not support
dynamic loading, you can type 'make static' which will
rebuild the Python interpreter with the SWIG module
added to it.   

For some C++ examples, you may need to use 'make static' as
dynamic loading of C++ modules is not supported equally on
all machines.

For static rebuilds, you may need to add the Tcl
libraries to the link line if your installed version of
Python has been compiled with the tkinter module.

Notable Examples
----------------

The following examples show some of the more powerful feature of
SWIG and may be of particular interest :

array      -  Defines a complete Python array class completely in C++.
              Performs bounds checking and raises C++ exceptions.  These
              are translated by SWIG into Python exceptions.
	
              