[Python-checkins] CVS: python/dist/src/Demo README,1.14,1.14.20.1

Michael Hudson mwh@users.sourceforge.net
Fri, 28 Dec 2001 02:29:25 -0800


Update of /cvsroot/python/python/dist/src/Demo
In directory usw-pr-cvs1:/tmp/cvs-serv23582

Modified Files:
      Tag: release22-maint
	README 
Log Message:
Remove extend directory and tidy up README as gvanrossum did on the trunk.

I'm feeling thorough today :)



Index: README
===================================================================
RCS file: /cvsroot/python/python/dist/src/Demo/README,v
retrieving revision 1.14
retrieving revision 1.14.20.1
diff -C2 -d -r1.14 -r1.14.20.1
*** README	2001/03/21 14:18:12	1.14
--- README	2001/12/28 10:29:23	1.14.20.1
***************
*** 16,28 ****
  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.
--- 16,38 ----
  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.
***************
*** 34,39 ****
  		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
--- 44,47 ----
***************
*** 42,50 ****
  		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).
  
! tix		Demos using the Tix widget set addition to Tkinter.
--- 50,68 ----
  		per subject.
  
+ 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.
! 
! xmlrpc		XML-RPC server framework (but see the standard library
! 		module SimpleXMLRPCServer.py for a replacement).
! 
! zlib		Some demos for the zlib module (see also the standard
! 		library module gzip.py).