[Python-checkins] python/nondist/peps pep-0305.txt,1.6,1.7

davecole@users.sourceforge.net davecole@users.sourceforge.net
Thu, 30 Jan 2003 05:34:32 -0800


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1:/tmp/cvs-serv740

Modified Files:
	pep-0305.txt 
Log Message:
Use symbolic constants for quoting parameter rather than a string.


Index: pep-0305.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0305.txt,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** pep-0305.txt	30 Jan 2003 12:53:40 -0000	1.6
--- pep-0305.txt	30 Jan 2003 13:34:29 -0000	1.7
***************
*** 143,147 ****
          skipinitialspace = False
          lineterminator = '\r\n'
!         quoting = 'minimal'
  
  An excel tab separated dialect can then be defined in user code as
--- 143,147 ----
          skipinitialspace = False
          lineterminator = '\r\n'
!         quoting = QUOTE_MINIMAL
  
  An excel tab separated dialect can then be defined in user code as