From ca60cac3a437c399cbe4e61ecfed0fef9b35ba3c Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 12 Jul 2003 23:55:57 +0000 Subject: [PATCH] Update for new module and new builtin. --- Misc/cheatsheet | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Misc/cheatsheet b/Misc/cheatsheet index ee4b8e04611..0c16ddb334f 100644 --- a/Misc/cheatsheet +++ b/Misc/cheatsheet @@ -1041,6 +1041,8 @@ str(object) printablerepresentation of an object. Class overridable (__str__).See also repr(). 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). Returns a type object [see module types] representing @@ -1862,6 +1864,7 @@ compileall Force "compilation" of all .py files in a directory. ConfigParser Configuration file parser (much like windows .ini files) 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. [DEL:dircmp:DEL] [DEL:Defines a class to build directory diff tools on.:DEL]