Patches item #1678060, was opened at 2007-03-10 21:34 Message generated for change (Comment added) made by tonylownds You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1678060&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: Python 3000 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Tony Lownds (tonylownds) Assigned to: Brett Cannon (bcannon) Summary: Removal of Tuple Parameter Unpacking [PEP3113] Initial Comment: Remove tuple parameter unpacking. The Grammar is now: typedargslist: ((tfpdef ['=' test] ',')* ('*' [tfpdef] (',' tfpdef ['=' test])* [',' '**' tfpdef] | '**' tfpdef) | tfpdef ['=' test] (',' tfpdef ['=' test])* [',']) tfpdef: NAME [':' test] varargslist: ((vfpdef ['=' test] ',')* ('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef) | vfpdef ['=' test] (',' vfpdef ['=' test])* [',']) vfpdef: NAME Tuple parameters are removed from Lib/. ---------------------------------------------------------------------- >Comment By: Tony Lownds (tonylownds) Date: 2007-03-12 15:07 Message: Logged In: YES user_id=24100 Originator: YES I found some more code to be removed + a docstring fix in inspect.py. getfullargspec's docstring lists the wrong order for return values. This patch combined the refmanual patch, previous simplified args patch, and 2to3 changes on some doc building tools. File Added: simplified-args.patch ---------------------------------------------------------------------- Comment By: Tony Lownds (tonylownds) Date: 2007-03-11 22:34 Message: Logged In: YES user_id=24100 Originator: YES File Added: refmanual.patch ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1678060&group_id=5470 _______________________________________________ Patches mailing list Patches@python.org http://mail.python.org/mailman/listinfo/patches