[issue6222] 2to3 except fixer failed in certain case

2009-06-06 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r73255. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue6222] 2to3 except fixer failed in certain case

2009-06-06 Thread Haoyu Bai
New submission from Haoyu Bai : The 2to3 except fixer will be failed with this code: try: raise TypeError except TypeError, x: pass with this code, 2to3 will produce an empty diff, i.e. it fixes nothing. But when change it to the following, 2to3 works again: try: raise TypeError excep