[Python-checkins] python/nondist/peps pep-0305.txt,1.10,1.11

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Sun, 02 Feb 2003 18:07:39 -0800


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

Modified Files:
	pep-0305.txt 
Log Message:
default dialect is now "excel", not "excel2000".


Index: pep-0305.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0305.txt,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** pep-0305.txt	2 Feb 2003 12:25:23 -0000	1.10
--- pep-0305.txt	3 Feb 2003 02:07:37 -0000	1.11
***************
*** 90,94 ****
  writing.  The basic reading interface is::
  
!     obj = reader(iterable [, dialect='excel2000']
                   [optional keyword args])
  
--- 90,94 ----
  writing.  The basic reading interface is::
  
!     obj = reader(iterable [, dialect='excel']
                   [optional keyword args])
  
***************
*** 106,110 ****
  The writing interface is similar::
  
!     obj = writer(fileobj [, dialect='excel2000'], [, fieldnames=seq]
                   [optional keyword args])
  
--- 106,110 ----
  The writing interface is similar::
  
!     obj = writer(fileobj [, dialect='excel'], [, fieldnames=seq]
                   [optional keyword args])
  
***************
*** 165,169 ****
  follows::
  
!     class exceltsv(csv.excel2000):
          delimiter = '\t'
  
--- 165,169 ----
  follows::
  
!     class exceltsv(csv.excel):
          delimiter = '\t'