[issue2453] fix_except needs to allow for empty excepts

2008-03-27 Thread Collin Winter
Collin Winter <[EMAIL PROTECTED]> added the comment: Fixed in r61983. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __

[issue2453] fix_except needs to allow for empty excepts

2008-03-21 Thread Martin v. Löwis
New submission from Martin v. Löwis <[EMAIL PROTECTED]>: The code try: f() except X,a: g() except: h() currently doesn't get changed, but should be converted to try: f() except X as a: g() except: h() -- assignee: collinwinter components: 2to3 (2.x to 3.0 conve