New submission from Ali Polatel <[EMAIL PROTECTED]>: fix_idioms.py generates bad code for conversions in try/except blocks. Example: s=(1, 2, 3) try: t = list(s) t.sort() except TypeError: pass
fix_idioms.py generates this diff: --- test.py (original) +++ test.py (refactored) @@ -7,8 +7,7 @@ s=(1, 2, 3) try: - t = list(s) - t.sort() -except TypeError: + t = sorted(s) + except TypeError: pass except TypeError is indented wrongly. ---------- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) messages: 71199 nosy: collinwinter, hawking severity: normal status: open title: fix_idioms.py generates bad code _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3563> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com