[Python-checkins] python/nondist/sandbox/csv README,1.2,1.3

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Mon, 03 Feb 2003 13:22:40 -0800


Update of /cvsroot/python/python/nondist/sandbox/csv
In directory sc8-pr-cvs1:/tmp/cvs-serv18228

Modified Files:
	README 
Log Message:
updated


Index: README
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/csv/README,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** README	29 Jan 2003 14:18:20 -0000	1.2
--- README	3 Feb 2003 21:22:37 -0000	1.3
***************
*** 1,6 ****
! This little corner of the sandbox aims to create a module to read and write
! CSV files.  Involved parties are currently Kevin Altis, Dave Cole, Skip
! Montanaro, Cliff Wells and Andrew McNamara.
  
! Stay tuned...
  
--- 1,25 ----
! This little corner of the sandbox contains a fairly complete csv module
! based on PEP 305 and drawing heavily on the code in Object Craft's original
! csv module.  If you'd like to try it out simply execute
  
!     python setup.py install
  
+ There is a moderately accurate library reference manual section in
+ libcsv.tex, though you will have to read the raw source for the time being.
+ You may also find PEP 305 helpful.
+ 
+ Please send feedback, including bug reports, to csv@mail.mojam.com.  You can
+ browse the list archives at
+ 
+     http://manatee.mojam.com/pipermail/csv/
+ 
+ and subscribe to the list at
+ 
+     http://manatee.mojam.com/mailman/listinfo/csv
+ 
+ 
+ Kevin Altis
+ Dave Cole
+ Andrew McNamara
+ Skip Montanaro
+ Cliff Wells