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 conversion tool)
messages: 64303
nosy: collinwinter, loewis
severity: normal
status: open
title: fix_except needs to allow for empty excepts
type: behavior

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2453>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to