[Python-checkins] python/nondist/sandbox/csv libcsv.tex,1.7,1.8

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Thu, 13 Feb 2003 22:25:48 -0800


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

Modified Files:
	libcsv.tex 
Log Message:
document lack of Unicode support and problematic handling of ASCII NULs.


Index: libcsv.tex
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/csv/libcsv.tex,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** libcsv.tex	13 Feb 2003 17:30:30 -0000	1.7
--- libcsv.tex	14 Feb 2003 06:25:44 -0000	1.8
***************
*** 29,32 ****
--- 29,37 ----
  form using the \class{DictReader} and {}\class{DictWriter} classes.
  
+ \note{The first version of the \module{csv} module doesn't support Unicode
+ input.  Also, there are currently some issues regarding ASCII NUL
+ characters.  Accordingly, all input should generally be plain ASCII to be
+ safe.  These restrictions will be removed in the future.}
+ 
  
  \subsection{Module Contents}