[Python-3000] PEP 3102 comments

Greg Ewing greg.ewing at canterbury.ac.nz
Fri May 26 02:15:29 CEST 2006


Nick Coghlan wrote:

> def f(a, b, *(pos1, pos2), c, d):
>     # Exactly 2 extra positional arguments required

Then someone is going to want

   def f(a, b, *(pos1, pos2, *args), c, d):
       # 2 or more positional-only arguments required

--
Greg



More information about the Python-3000 mailing list