cpython/Demo
Antoine Pitrou f95a1b3c53 Recorded merge of revisions 81029 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines

  Untabify C files. Will watch buildbots.
........
2010-05-09 15:52:27 +00:00
..
cgi convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
classes Merged revisions 78779 via svnmerge from 2010-03-21 22:42:02 +00:00
comparisons convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
curses convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
distutils/test2to3 convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
embed Recorded merge of revisions 81029 via svnmerge from 2010-05-09 15:52:27 +00:00
imputil remove imputil demo 2008-06-05 22:53:40 +00:00
md5test Merged revisions 78779 via svnmerge from 2010-03-21 22:42:02 +00:00
newmetaclasses Remove __metaclass__ remains. 2008-05-27 20:34:09 +00:00
parser convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
pdist Remove traces of MacOS9 support. 2010-05-05 19:11:21 +00:00
pysvr Recorded merge of revisions 81029 via svnmerge from 2010-05-09 15:52:27 +00:00
rpc Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from 2008-09-13 15:58:53 +00:00
scripts convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
sockets Merged revisions 78779 via svnmerge from 2010-03-21 22:42:02 +00:00
threads Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from 2008-09-13 15:58:53 +00:00
tix Merged revisions 78779 via svnmerge from 2010-03-21 22:42:02 +00:00
tkinter Merged revisions 78779 via svnmerge from 2010-03-21 22:42:02 +00:00
turtle fix demo/doc eol 2010-03-19 20:58:52 +00:00
xml Merged revisions 75358 via svnmerge from 2009-10-11 15:56:06 +00:00
zlib convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
README Merge the rest of the trunk. 2006-06-08 15:35:45 +00:00

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.


cgi             CGI examples (see also ../Tools/faqwiz/.)

classes		Some examples of how to use classes.

comparisons	A set of responses to a really old language-comparison
		challenge.

curses		A set of curses demos.

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

imputil		Demonstration subclasses of imputil.Importer.

md5test		Test program for the optional md5 module.

metaclasses	The code from the 1.5 metaclasses paper on the web.

parser		Example using the parser module.

pdist		Old, unfinished code messing with CVS, RCS and remote
		files.

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'.

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

tix		Demos using the Tix widget set addition to Tkinter.

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

xml		Some XML demos.

zlib		Some demos for the zlib module (see also the standard
		library module gzip.py).