[issue2367] Fixer to handle new places where parentheses are needed

2008-08-22 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for the work! I reviewed the code, added support for generator expressions, and wrote a few more tests. Committed in r65981. -- resolution: -> fixed status: open -> closed ___ Python tra

[issue2367] Fixer to handle new places where parentheses are needed

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: How is this coming? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___

[issue2367] Fixer to handle new places where parentheses are needed

2008-03-18 Thread Taek Joo Kim
Taek Joo Kim <[EMAIL PROTECTED]> added the comment: This patch handles the conversion. -- keywords: +patch nosy: +taicki Added file: http://bugs.python.org/file9747/i2367.patch __ Tracker <[EMAIL PROTECTED]>

[issue2367] Fixer to handle new places where parentheses are needed

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon <[EMAIL PROTECTED]>: -- priority: immediate -> urgent __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing lis

[issue2367] Fixer to handle new places where parentheses are needed

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon <[EMAIL PROTECTED]>: Py3K has some places where parentheses are now required (e.g., ``[x for x in 1, 2]`` to ``[x for x in (1, 2)``). A fixer is needed to handle the conversion. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywo