Issue 1107: 2to3, lambda with non-tuple argument inside parenthesis (original) (raw)

Issue1107

Created on 2007-09-05 05:52 by falsetru, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
2to3_lambda_nontuple_param.diff falsetru,2007-09-05 05:52
Messages (4)
msg55654 - (view) Author: Jeong-Min Lee (falsetru) Date: 2007-09-05 05:52
lambda (x): x should be transformed to lambda x: x not lambda x1: x1[0]
msg55655 - (view) Author: Jeong-Min Lee (falsetru) Date: 2007-09-05 05:56
I found this while 2to3ing BeautifulSoup.py.
msg55659 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-09-05 06:47
Assigned to Collin.
msg55755 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-09-08 21:16
Fixed in r58055, r58056.
History
Date User Action Args
2022-04-11 14:56:26 admin set github: 45448
2007-09-08 21:16:31 collinwinter set status: open -> closedresolution: fixedmessages: +
2007-09-06 17:58:09 collinwinter set components: + 2to3 (2.x to 3.x conversion tool), - Demos and Tools
2007-09-05 06:47:09 georg.brandl set assignee: collinwintermessages: + nosy: + georg.brandl, collinwintertitle: [patch] 2to3, lambda with non-tuple argument inside parenthesis -> 2to3, lambda with non-tuple argument inside parenthesis
2007-09-05 05:56:42 falsetru set messages: +
2007-09-05 05:52:58 falsetru create