On Jan 26, 10:39 am, Chris Rebert wrote:
> On Mon, Jan 26, 2009 at 1:34 AM, brasse wrote:
> > On Jan 26, 10:11 am, Chris Rebert wrote:
> >> On Mon, Jan 26, 2009 at 1:03 AM, brasse wrote:
> >> > Hello!
>
> >> > Is there any way that I can get at all the arguments passed to a
> >> > function as a
On Mon, Jan 26, 2009 at 1:34 AM, brasse wrote:
> On Jan 26, 10:11 am, Chris Rebert wrote:
>> On Mon, Jan 26, 2009 at 1:03 AM, brasse wrote:
>> > Hello!
>>
>> > Is there any way that I can get at all the arguments passed to a
>> > function as a map without using keyword arguments?
>>
>> > def foo
On Jan 26, 10:11 am, Chris Rebert wrote:
> On Mon, Jan 26, 2009 at 1:03 AM, brasse wrote:
> > Hello!
>
> > Is there any way that I can get at all the arguments passed to a
> > function as a map without using keyword arguments?
>
> > def foo(a, b, c):
> > # Can I access all the arguments in a c
brasse schrieb:
Hello!
Is there any way that I can get at all the arguments passed to a
function as a map without using keyword arguments?
def foo(a, b, c):
# Can I access all the arguments in a collection somewhere?
I'm mainly curious since I have stumbled on to some cases where it
might
On Mon, Jan 26, 2009 at 1:03 AM, brasse wrote:
> Hello!
>
> Is there any way that I can get at all the arguments passed to a
> function as a map without using keyword arguments?
>
> def foo(a, b, c):
># Can I access all the arguments in a collection somewhere?
You can use positional arguments
brasse wrote:
Is there any way that I can get at all the arguments passed to a
function as a map without using keyword arguments?
def foo(a, b, c):
# Can I access all the arguments in a collection somewhere?
I'm mainly curious since I have stumbled on to some cases where it
might have been