cpython/Demo
Fred Drake 6baec620b4 Sort the list of files processed before running the test on each. 2000-08-23 20:21:31 +00:00
..
classes Correct spelling of length, discovered by Christian Tismer. 1999-04-21 16:06:27 +00:00
comparisons /usr/local/bin/python -> /usr/bin/env python 1996-11-27 19:52:01 +00:00
dns Fix use of list.append() with multiple arguments 2000-02-28 17:25:14 +00:00
embed Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, 2000-07-22 19:25:51 +00:00
extend New test for generic Makefile.pre.in 1997-07-19 23:14:13 +00:00
imputil no changes other than indentation level (now 4) and comment reflow. 2000-07-18 09:09:48 +00:00
md5test initial checkin 1994-10-08 19:17:34 +00:00
metaclasses Fix some broken links. 2000-01-20 21:37:19 +00:00
parser Sort the list of files processed before running the test on each. 2000-08-23 20:21:31 +00:00
pdist typos fixed by Rob Hooft 2000-06-28 14:48:01 +00:00
pysvr Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, 2000-07-22 19:25:51 +00:00
rpc Fix multi-arg list.append() calls. 1998-10-08 15:24:48 +00:00
scripts Fix bug discovered by Klaus-Juergen Wolf -- it runs into infinite recursion! 1999-06-09 19:07:22 +00:00
sgi Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 2000-07-16 12:04:32 +00:00
sockets Ofir Reichenberg suggested to apply htonl() to grpaddr in openmcastsock(). 1999-08-07 14:01:05 +00:00
threads removing more stdwin users 2000-05-11 18:27:21 +00:00
tkinter Removing junk 2000-05-11 18:28:03 +00:00
zlib Change #! line to modern usage; also chmod +x 1999-03-12 19:07:59 +00:00
Makefile Initial revision 1994-01-04 23:24:38 +00:00
README Remove stdwin references 2000-05-11 18:29:05 +00:00

README

This directory contains various demonstrations of what you can do with
Python.  They were all written by me except where explicitly stated
otherwise -- in general, demos contributed by others ends up in the
../Contrib directory, unless I think they're of utmost general
importance (like Matt Conway's Tk demos).

A fair number of utilities that are useful when while developing
Python code can be found in the ../Tools directory -- some of these
can also be considered good examples of how to write Python code.

Finally, in order to save disk space and net bandwidth, not all
subdirectories listed here are distributed.  They are listed just
in case I change my mind about them.


classes		Some examples of how to use classes.

embed		An example of embedding Python in another application
		(see also pysvr).

extend		An example of using the generic Makefile.pre.in from
		the Misc directory to build a statically linked or
		shared extension module.

md5test		Test program for the optional md5 module.

pysvr		An example of embedding Python in a threaded
		application.

rpc		A set of classes for building clients and servers for
		Sun RPC.

scripts		Some useful Python scripts that I put in my bin
		directory.  No optional built-in modules needed.

sockets		Examples for the new built-in module 'socket'.

sgi		Demos that only run on Silicon Graphics machines.
		These require at least one of the optional built-in
		modules that only make sense for the SGI, such as
		'gl', 'al', and 'sv'.  Split in subdirectories
		per subject.

threads		Demos that use the 'thread' module.  (Currently these
		only run on SGIs, but this may change in the future.)

tkinter		Demos using the Tk interface (including Matt Conway's
		excellent set of demos).