Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion Default arguments in Python - the return - running out of ideas but...
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bruce Leban  
View profile  
 More options May 13 2009, 10:41 pm
From: Bruce Leban <br...@leapyear.org>
Date: Wed, 13 May 2009 19:41:17 -0700
Local: Wed, May 13 2009 10:41 pm
Subject: Re: [Python-ideas] Default arguments in Python - the return - running out of ideas but...

On Wed, May 13, 2009 at 5:10 PM, George Sakkis <george.sak...@gmail.com>wrote:

> On Wed, May 13, 2009 at 7:08 PM, Terry Reedy <tjre...@udel.edu> wrote:

> > Bruce Leban wrote:
> >> def myfunc(a, b, c = *lambda: expression):
> >>  stuff

> > There is a proposal, which I thought was accepted in principle, to make
> '*
> > seq' valid generally, not just in arg-lists. to mean 'unpack the
> sequence'.
> > * (lambda:1,2)() would then be valid, and without the call, would be a
> > runtime, not syntax error.

> Then how about putting the * before the parameter ?

>    def myfunc(a, b, *c = lambda: expression):

> It's currently a syntax error, although the fact that "*arg" and
> "*arg=default" would mean something completely different is
> problematic. Still the same idea can be applied for some other
> operator (either valid already or not).

I think similar syntax should do similar things. If *arg means one thing and
&arg means something else, that's confusing. There are lots of non confusing
alternatives:

   def foo(a, b := lambda: bar):
   def foo(a, b = & lambda: bar):
   def foo(a, @dynamic b = lambda: bar):   # adding decorators on parameters

   and more

Subproposal (1): Get rid of the explicit lambda for dynamic arguments. That

> is,

>    def myfunc(a, b, *x=[]):

> would be equivalent to what previous proposals would write as

>    def myfunc(a, b, *x=lambda: []):

Explicit is better than implicit. There's a thunk getting created here,
right? Don't you want that to be obvious? I do.

Subproposal (2): If subproposal (1) is accepted, we could get for free

> (in terms of syntax at least) dynamic args depending on previous ones.
> That is,

>    def myfunc(a, b, *m=(a+b)/2):

> would mean

>    def myfunc(a, b, *m = lambda a,b: (a+b)/2):

> with the lambda being passed the values of a and b at runtime.

It's not free and that adds quite a bit of complexity. Note that default
parameters are evaluated in the context of where the function is defined,
NOT in the middle of setting the other function parameters. (That's true for
this new case too.)

Sure Lisp has let and let* but the proposal here is NOT to provide arbitrary
computational ability in the parameter list but to provide a way to have
defaults that are not static. We shouldn't over-engineer things just because
we can.

--- Bruce

_______________________________________________
Python-ideas mailing list
Python-id...@python.org
http://mail.python.org/mailman/listinfo/python-ideas


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.