[Python-checkins] python/dist/src/Misc cheatsheet,1.6,1.7

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 12 Jul 2003 16:56:00 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv3050

Modified Files:
	cheatsheet 
Log Message:
Update for new module and new builtin.

Index: cheatsheet
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/cheatsheet,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** cheatsheet	2 Jul 2003 21:38:34 -0000	1.6
--- cheatsheet	12 Jul 2003 23:55:57 -0000	1.7
***************
*** 1042,1045 ****
--- 1042,1047 ----
  super(type)         Create an unbound super object.  Used to call cooperative
                      superclass methods.
+ sum(sequence,       Add the values in the sequence and return the sum.
+     [start]) 
  tuple(sequence)     Creates a tuple with same elements as sequence. If already
                      a tuple, return itself (not a copy).
***************
*** 1863,1866 ****
--- 1865,1869 ----
  copy             Generic shallow and deep copying operations.
  copy_reg         Helper to provide extensibility for pickle/cPickle.
+ csv              Read and write files with comma separated values.
  dbhash           (g)dbm-compatible interface to bsdhash.hashopen.
  dircache         Sorted list of files in a dir, using a cache.