[Python-checkins] python/dist/src/Lib csv.py,1.6,1.7

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 11 Jun 2003 21:05:03 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv5517

Modified Files:
	csv.py 
Log Message:
One more multiple exception catch should be in a tuple.


Index: csv.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/csv.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** csv.py	12 Jun 2003 03:59:17 -0000	1.6
--- csv.py	12 Jun 2003 04:05:00 -0000	1.7
***************
*** 420,424 ****
                  try:
                      colType(header[col])
!                 except ValueError, TypeError:
                      hasHeader += 1
                  else:
--- 420,424 ----
                  try:
                      colType(header[col])
!                 except (ValueError, TypeError):
                      hasHeader += 1
                  else: