Re: [Tutor] dynamic argument lists

2008-08-30 Thread Lie Ryan
On Sat, 2008-08-30 at 12:00 +0200, [EMAIL PROTECTED] wrote: > > Message: 2 > Date: Sat, 30 Aug 2008 10:09:36 +0100 > From: eShopping <[EMAIL PROTECTED]> > Subject: Re: [Tutor] dynamic argument lists > To: tutor@python.org > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=us-asc

Re: [Tutor] dynamic argument lists

2008-08-30 Thread bob gailer
eShopping wrote: Bob, Kent thanks for the suggestions. Bob made the comment "If there is no compelling requirement that myfunc's argument be in the form **kwargs ...", but I'm afraid I don't understand the difference between myfunc (**kwargs) and myfunc (kwargs) Would someone mind explai

Re: [Tutor] dynamic argument lists

2008-08-30 Thread Kent Johnson
On Sat, Aug 30, 2008 at 5:09 AM, eShopping <[EMAIL PROTECTED]> wrote: > I don't understand the difference between > > myfunc (**kwargs) > > and > > myfunc (kwargs) > > Would someone mind explaining this? I never managed to find a satisfactory > explanation for what "**" means! One is a function t

Re: [Tutor] dynamic argument lists

2008-08-30 Thread eShopping
Bob, Kent thanks for the suggestions. Bob made the comment "If there is no compelling requirement that myfunc's argument be in the form **kwargs ...", but I'm afraid I don't understand the difference between myfunc (**kwargs) and myfunc (kwargs) Would someone mind explaining this? I neve