diff options
author | Guido van Rossum <guido@python.org> | 2007-01-10 16:19:56 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-01-10 16:19:56 +0000 |
commit | b940e113bf90ff71b0ef57414ea2beea9d2a4bc0 (patch) | |
tree | 0b9ea19eba1e665dac95126c3140ac2bc36326ad /Lib/csv.py | |
parent | News about removal of the sets module. (diff) | |
download | cpython-b940e113bf90ff71b0ef57414ea2beea9d2a4bc0.tar.gz cpython-b940e113bf90ff71b0ef57414ea2beea9d2a4bc0.tar.bz2 cpython-b940e113bf90ff71b0ef57414ea2beea9d2a4bc0.zip |
SF patch 1631942 by Collin Winter:
(a) "except E, V" -> "except E as V"
(b) V is now limited to a simple name (local variable)
(c) V is now deleted at the end of the except block
Diffstat (limited to 'Lib/csv.py')
-rw-r--r-- | Lib/csv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/csv.py b/Lib/csv.py index 79d72b609cb..d91117554ec 100644 --- a/Lib/csv.py +++ b/Lib/csv.py @@ -48,7 +48,7 @@ class Dialect: def _validate(self): try: _Dialect(self) - except TypeError, e: + except TypeError as e: # We do this for compatibility with py2.3 raise Error(str(e)) |