[Python-checkins] python/nondist/sandbox/csv csv.py,1.3,1.4

davecole@users.sourceforge.net davecole@users.sourceforge.net
Thu, 30 Jan 2003 05:11:24 -0800


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

Modified Files:
	csv.py 
Log Message:
Changed the quoting format argument to integer.


Index: csv.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/csv/csv.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** csv.py	30 Jan 2003 12:20:54 -0000	1.3
--- csv.py	30 Jan 2003 13:11:21 -0000	1.4
***************
*** 1,4 ****
--- 1,6 ----
  import _csv
  
+ QUOTE_MINIMAL, QUOTE_ALL, QUOTE_NONNUMERIC = range(3)
+ 
  class excel2000:
      quotechar = '"'
***************
*** 7,11 ****
      skipinitialspace = False
      lineterminator = '\r\n'
!     quoting = 'minimal'
  
  class excel2000_tab:
--- 9,13 ----
      skipinitialspace = False
      lineterminator = '\r\n'
!     quoting = QUOTE_MINIMAL
  
  class excel2000_tab: