Message52154
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/. |
|
Date |
User |
Action |
Args |
2007-08-23 15:57:26 | admin | link | issue1678060 messages |
2007-08-23 15:57:26 | admin | create | |
|