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

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 11 Jun 2003 20:59:19 -0700


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

Modified Files:
	csv.py 
Log Message:
The 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.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** csv.py	12 Jun 2003 03:01:55 -0000	1.5
--- csv.py	12 Jun 2003 03:59:17 -0000	1.6
***************
*** 390,394 ****
                          thisType(row[col])
                          break
!                     except ValueError, OverflowError:
                          pass
                  else:
--- 390,394 ----
                          thisType(row[col])
                          break
!                     except (ValueError, OverflowError):
                          pass
                  else: