[Patches] [ python-Patches-1678060 ] Removal of Tuple Parameter Unpacking [PEP3113]

SourceForge.net noreply at sourceforge.net
Sat Mar 10 22:36:26 CET 2007


Patches item #1678060, was opened at 2007-03-10 21:34
Message generated for change (Settings changed) 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: Nobody/Anonymous (nobody)
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/.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1678060&group_id=5470


More information about the Patches mailing list