Anyone tinkering with python long enough has been bit (or torn to pieces) by the following issue:

def foo(a=[]):
    a.append(5)
    return a

Python novices would expect this function to always return a list with only one element: [5]. The result is instead very different, and very astonishing (for a novice):

>>> foo()
[5]
>>> foo()
[5, 5]
>>> foo()
[5, 5, 5]
>>> foo()
[5, 5, 5, 5]
>>> foo()

A manager of mine once had his first encountered with this feature, and called it "a dramatic design flaw" of the language. I replied that the behavior had an underlying explanation, and it is indeed very puzzling and unexpected if you don't understand the internals. However, I was not able to answer (to myself) the following question: what is the reason for binding the default argument at function definition, and not at function execution? I doubt the experienced behavior has a practical use (who really used static variables in C, without breeding bugs ?)

Edit:

Baczek made an interesting example. Together with most of your comments and Utaal's in particular, I elaborated further:

>>> def a():
...     print "a executed"
...     return []
... 
>>>            
>>> def b(x=a()):
...     x.append(5)
...     print x
... 
a executed
>>> b()
[5]
>>> b()
[5, 5]

To me, it seems that the design decision was relative to where to put the scope of parameters: inside the function or "together" with it? Doing the binding inside the function would mean that x is effectively bound to the specified default when the function is called, not defined, something that would present a deep flaw: the def line would be "hybrid" in the sense that part of the binding (of the function object) would happen at definition, and part (assignment of default parameters) at function invocation time.

The actual behavior is more consistent: everything of that line gets evaluated when that line is executed, meaning at function definition.

Guido is a fantastic designer.

Edit

I reread all the very interesting and good answers you provided, and it was hard to assign a "correct tickmark", as everyone had good points in the answer. I marked Roberto's answer as correct because it was simpler and revealing, so that newcomers browsing this question can start from his answer and then delve into remaning more complex (but very insightful) answers.

link|improve this question

72% accept rate
12  
The real issue is the scope of the variable. No answer has yet discussed this, or addressed why a parameter to a function would have its default parameters globally scoped. It's certainly contrary to all other languages I've worked with. – Kieveli Jul 15 '09 at 19:03
17  
@Kieveli: It's not globally scoped. It's tied to the function object itself. When the function is instantiated (when the declaration is executed), the default parameter expression is evaluated (in the example above, a list literal), and the resulting object is bound to the created function object. If you place that function definition inside of another function and return it from the outer function, you will obtain a new function object each time the outer function is called, and each one will have its own default a list. They are not globally shared. – Miles Jul 15 '09 at 23:32
Ahm, but for a global function, they are globally scoped, which is what he meant. Just as for a function defined in the function, the scope is the first function. So you are both right. @Kieveli: Well, it's a natural effect of the fact that Python is interpreted, dynamic and uses references for everything. What other languages have you used that fits that bill? Can't be that many. :-) – Lennart Regebro Jul 16 '09 at 11:45
1  
I may never get tired of posting this link to explain the difference between variable and names in python, tho I just learned about it: python.net/~goodger/projects/pycon/2007/idiomatic/… - This is for your first edit. Note how a from the first example and x from the second are just naming the same (mutable) object. – Cawas Apr 14 '10 at 19:33
How could the default values to a function parameter use any scope other than global or, in the case of class methods, class? Doesn't the scope of the default value have to be at least as broad as the function itself? If they had function scope, they wouldn't be initialized the first time the function was called, so they wouldn't be very useful as default values. – intuited Jun 21 '10 at 8:05
show 1 more comment
feedback

15 Answers

up vote 157 down vote accepted

Actually, this is not a design flaw, and it is not because of internals, or performance.
It comes simply from the fact that functions in Python are first-class objects, and not only a piece of code.

As soon as you get to think into this way, then it completely makes sense: a function is an object being evaluated on its definition; default parameters are kind of "member data" and therefore their state may change from one call to the other - exactly as in any other object.

In any case, Effbot has a very nice explanation of the reasons for this behavior in Default Parameter Values in Python.
I found it very clear, and I really suggest reading it for a better knowledge of how function objects work.

link|improve this answer
8  
+1: I wish I could vote more, actually. You have a very clear point and the article you suggested is indeed amazing. – Stefano Borini Jul 17 '09 at 22:44
1  
+1: great answer! – jldupont Nov 17 '09 at 14:19
What do you mean by "first-class objects", Roberto? Is this it, the "programmer's note" right above the "class definitions"? docs.python.org/reference/compound_stmts.html#class-definitions – Cawas Apr 14 '10 at 19:41
2  
Good answer, but I still think that it is a design flaw – Casebash May 15 '10 at 12:33
1  
To anyone reading the above answer, I strongly recommend you take the time to read through the linked Effbot article. As well as all the other useful info, the part on how this language feature can be used for result caching/memoisation is very handy to know! – Cam Jackson Oct 14 '11 at 0:05
show 1 more comment
feedback

Suppose you have the following code

fruits = ("apples", "bannanas", "loganberries")

def eat(food=fruits):
    ...

When I see the declaration of eat, the least astonishing thing is to think that if the first parameter is not given, that it will be equal to the tuple ("apples", "bannanas", "loganberries")

However, supposed later on in the code, I do something like

def some_random_function():
    global fruits
    fruits = ("blueberries", "mangos")

then if default parameters were bound at function execution rather than function declaration then I would be astonished (in a very bad way) to discover that fruits had been changed. This would be more astonishing IMO than discovering that your foo function above was mutating the list.

The real problem lies with mutable variables, and all languages have this problem to some extent. Here's a question: suppose in Java I have the following code:

StringBuffer s = "Hello World!";
Map<StringBuffer,Integer> counts = new HashMap<StringBuffer,Integer>();
counts.put(s, 5);
s.append("!!!!");
System.out.println( counts.get(s) );  // does this work?

Now, does my map use the value of the StringBuffer key when it was placed into the map, or does it store the key by reference? Either way, someone is astonished; either the person who tried to get the object out of the Map using a value identical to the one they put it in with, or the person who can't seem to retrieve their ovject even though the key they're using is literally the same object that was used to put it into the map. (This is actually why Python doesn't allow its mutable builtin data types to be used as dictionary keys.)

Your example is a good one of a case where Python newcomers will be surprised and bitten. But I'd argue that if we fixed this, then that would only create a different situation where they'd be bitten instead, and that one would be even less intuitive. Moreover, this is always the case when dealing with mutable variables; you always run into cases where someone could intuitively expect one or the opposite behavior depending on what code they're writing.

I personally like Python's current approach: default function arguments are evaluated when the function is defined and that object is always the default. I suppose they could special-case using an empty list, but that kind of special casing would cause even more astonishment, not to mention be backwards incompatible.

link|improve this answer
4  
I think it's a matter of debate. You are acting on a global variable. Any evaluation performed anywhere in your code involving your global variable will now (correctly) refer to ("blueberries", "mangos"). the default parameter could just be like any other case. – Stefano Borini Jul 15 '09 at 18:16
5  
Actually, I don't think I agree with your first example. I'm not sure I like the idea of modifying an initializer like that in the first place, but if I did, I'd expect it to behave exactly as you describe — changing the default value to ("blueberries", "mangos"). – Ben Blank Jul 15 '09 at 18:26
4  
The default parameter is like any other case. What is unexpected is that the parameter is a global variable, and not a local one. Which in turn is because the code is executed at function definition, not call. Once you get that, and that the same goes for classes, it's perfectly clear. – Lennart Regebro Jul 15 '09 at 18:59
Brilliant counterexample, +1 – TokenMacGuy Dec 5 '10 at 1:52
feedback

I know nothing about the python interpreter inner workings (and I'm not an expert in compilers and interpreters either) so don't blame me if I propose anything unsensible or impossible.

Provided that python objects are mutable I think that this should be taken into account when designing the default arguments stuff. When you instantiate a list:

a = []

you expect to get a new list referenced by a.

Why should the a=[] in

def x(a=[]):

instantiate a new list on function definition and not on invocation? It's just like you're asking "if the user doesn't provide the argument than instantiate a new list and use it as if it was produced by the caller". I think this is ambiguous instead:

def x(a=datetime.datetime.now()):

user, do you want a to default to the datetime corresponding to when you're defining or executing x? In this case, as in the previous one, I'll keep the same behaviour as if the default argument "assignment" was the first instruction of the function (datetime.now() called on function invocation). On the other hand, if the user wanted the defintion-time mapping he could write:

b = datetime.datetime.now()
def x(a=b):

I know, I know: that's a closure. Alternatively python might provide a keyword to force definition-time binding:

def x(static a=b):
link|improve this answer
1  
You could do: def x(a=None): And then, if a is None, set a=datetime.datetime.now() – Anon Jul 16 '09 at 0:18
1  
I know, that was just an example to explain why I would prefer execution-time binding. – Utaal Jul 16 '09 at 9:01
3  
excellent example! – yairchu Jul 16 '09 at 10:23
1  
lovely example indeed. – Cawas Apr 14 '10 at 20:36
2  
Thank you for this. I couldn't really put my finger on why this irks me to no end. You have done it beautifully with a minimum of fuzz and confusion. As someone comming from systems programming in C++ and sometimes naively "translating" language features, this false friend kicked me in the in the soft of the head big time, just like class attributes. I understand why things are this way, but I cannot help but dislike it, no matter what positive might come of it. At least it is so contrary to my experience, that I'll probably (hopefully) never forget it... – AndreasT Apr 22 '11 at 9:33
show 2 more comments
feedback

Well, the reason is quite simply that bindings are done when code is executed, and the function definition is executed, well... when the functions is defined.

Compare this:

class BananaBunch:
    bananas = []

    def addBanana(self, banana):
        self.bananas.append(banana)

This code suffers from the exact same unexpected happenstance. bananas is a class attribute, and hence, when you add things to it, it's added to all classes. The reason is exactly the same.

It's just "How It Works", and making it work differently in the function case would probably be complicated, and in the class case likely impossible, or at least slow down object instantiation a lot, as you would have to keep the class code around and execute it when objects are created.

Yes, it is unexpected. But once the penny drops, it fits in perfectly with how Python works in general. In fact, it's a good teaching aid, and once you understand why this happens, you'll grok python much better.

That said it should feature prominently in any good Python tutorial. Because as you mention, everyone runs into this problem sooner or later.

link|improve this answer
How do you define a class attribute that is different for each instance of a class? – Kieveli Jul 15 '09 at 19:04
9  
If it's different for each instance it's not a class attribute. Class attributes are attributes on the CLASS. Hence the name. Hence they are the same for all instances. – Lennart Regebro Jul 15 '09 at 19:17
2  
He wasn't asking for a description of Python's behavior, he was asking for the rationale. Nothing in Python is just "How It Works"; it all does what it does for a reason. – Glenn Maynard Jul 15 '09 at 20:20
2  
And I gave the rationale. – Lennart Regebro Jul 15 '09 at 21:56
1  
I wouldn't say that this "it's a good teaching aid", because it's not. – Tempus Jul 16 '09 at 13:20
show 4 more comments
feedback

What you're asking is why this:

def func(a=[], b = 2):
    pass

isn't internally equivalent to this:

def func(a=None, b = None):
    a_default = lambda: []
    b_default = lambda: 2
    def actual_func(a=None, b=None):
        if a is None: a = a_default()
        if b is None: b = b_default()
    return actual_func
func = func()

except for the case of explicitly calling func(None, None), which we'll ignore.

In other words, instead of evaluating default parameters, why not store each of them, and evaluate them when the function is called?

One answer is probably right there--it would effectively turn every function with default parameters into a closure. Even if it's all hidden away in the interpreter and not a full-blown closure, the data's got to be stored somewhere. It'd be slower and use more memory.

link|improve this answer
1  
It wouldn't need to be a closure - a better way to think of it would simply to make the bytecode creating defaults the first line of code - after all you're compiling the body at that point anyway - there's no real difference between code in the arguments and code in the body. – Brian Jul 16 '09 at 9:39
3  
True, but it would still slow Python down, and it would actually be quite surprising, unless you do the same for class definitions, which would make it stupidly slow as you would have to re-run the whole class definition each time you instantiate a class. As mentioned, the fix would be more surprising than the problem. – Lennart Regebro Jul 16 '09 at 11:49
Agreed with Lennart. As Guido is fond of saying, for every language feature or standard library, there's someone out there using it. – Jason Baker Jul 16 '09 at 13:21
1  
Changing it now would be insanity--we're just exploring why it is the way it is. If it did late default evaluation to begin with, it wouldn't necessarily be surprising. It's definitely true that such a core a difference of parsing would have sweeping, and probably many obscure, effects on the language as a whole. – Glenn Maynard Jul 16 '09 at 18:10
feedback

This behavior is easy explained by:

  1. function (class etc.) declaration is executed only once, creating all default value objects
  2. everything is passed by reference

So:

def x(a=0, b=[], c=[], d=0):
    a = a + 1
    b = b + [1]
    c.append(1)
    print a, b, c
  1. a doesn't change - every assignment call creates new int object - new object is printed
  2. b doesn't change - new array is build from default value and printed
  3. c changes - operation is performed on same object - and it is printed
link|improve this answer
Your #4 could be confusing to people, since integers are immutable and so that "if" is not true. For instance, with d set to 0, d.__add__(1) would return 1, but d would still be 0. – Anon Jul 15 '09 at 23:45
(Actually, add is a bad example, but integers being immutable still is my main point.) – Anon Jul 15 '09 at 23:54
yes, that wasn't good example – ymv Jul 15 '09 at 23:57
Realized it to my chagrin after checking to see that, with b set to [], b.__add__([1]) returns [1] but also leaves b still [] even though lists are mutable. My bad. – Anon Jul 16 '09 at 0:03
feedback

I used to think that creating the objects at runtime would be the better approach. I'm less certain now, since you do lose some useful features, though it may be worth it regardless simply to prevent newbie confusion. The disadvantages of doing so are:

1. Performance

def foo(arg=something_expensive_to_compute())):
    ...

If call-time evaluation is used, then the expensive function is called every time your function is used without an argument. You'd either pay an expensive price on each call, or need to manually cache the value externally, polluting your namespace and adding verbosity.

2. Forcing bound parameters

A useful trick is to bind parameters of a lambda to the current binding of a variable when the lambda is created. For example:

funcs = [ lambda i=i: i for i in range(10)]

This returns a list of functions that return 0,1,2,3... respectively. If the behaviour is changed, they will instead bind i to the call-time value of i, so you would get a list of functions that all returned 9.

The only way to implement this otherwise would be to create a further closure with the i bound, ie:

def make_func(i): return lambda: i
funcs = [make_func(i) for i in range(10)]

3. Introspection

Consider the code:

def foo(a='test', b=100, c=[]):
   print a,b,c

We can get information about the arguments and defaults using the inspect module, which

>>> inspect.getargspec(foo)
(['a', 'b', 'c'], None, None, ('test', 100, []))

This information is very useful for things like document generation, metaprogramming, decorators etc.

Now, suppose the behaviour of defaults could be changed so that this is the equivalent of:

_undefined = object()  # sentinel value

def foo(a=_undefined, b=_undefined, c=_undefined)
    if a is _undefined: a='test'
    if b is _undefined: b=100
    if c is _undefined: c=[]

However, we've lost the ability to introspect, and see what the default arguments are. Because the objects haven't been constructed, we can't ever get hold of them without actually calling the function. The best we could do is to store off the source code and return that as a string.

link|improve this answer
you could achieve introspection also if for each there was a function to create the default argument instead of a value. the inspect module will just call that function. – yairchu Jul 16 '09 at 10:24
@SilentGhost: I'm talking about if the behaviour was changed to recreate it - creating it once is the current behaviour, and why the mutable default problem exists. – Brian Jul 16 '09 at 10:59
@yairchu: That assumes the construction is safe to so (ie has no side effects). Introspecting the args shouldn't do anything, but evaluating arbitrary code could well end up having an effect. – Brian Jul 16 '09 at 11:02
A different language design often just means writing things differently. Your first example could easily be written as: _expensive = expensive(); def foo(arg=_expensive), if you specifically don't want it reevaluated. – Glenn Maynard Jul 16 '09 at 18:23
(Comments on this site are quite broken.) – Glenn Maynard Jul 16 '09 at 18:25
show 3 more comments
feedback

It's a performance optimization. As a result of this functionality, which of these two function calls do you think is faster?

def print_tuple(some_tuple=(1,2,3)):
    print some_list

print_tuple()        #1
print_tuple((1,2,3)) #2

I'll give you a hint. Here's the disassembly:

#1

0 LOAD_GLOBAL              0 (print_tuple)
3 CALL_FUNCTION            0
6 POP_TOP
7 LOAD_CONST               0 (None)
10 RETURN_VALUE

#2

 0 LOAD_GLOBAL              0 (print_tuple)
 3 LOAD_CONST               4 ((1, 2, 3))
 6 CALL_FUNCTION            1
 9 POP_TOP
10 LOAD_CONST               0 (None)
13 RETURN_VALUE

I doubt the experienced behavior has a practical use (who really used static variables in C, without breeding bugs ?)

As you can see, there is a performance benefit when using immutable default arguments. This can make a difference if it's a frequently called function. Also, bear in mind that Python isn't C. In C you have constants that are pretty much free. In Python you don't have this benefit.

link|improve this answer
how do you obtain the dissasembly? – Tempus Jul 16 '09 at 13:21
4  
Use the dis module: docs.python.org/library/dis.html – Jason Baker Jul 16 '09 at 15:20
feedback

the shortest answer would probably be "definition is execution", therefore the whole argument makes no strict sense. as a more contrived example, you may cite this:

def a(): return []

def b(x=a()):
    print x

hopefully it's enough to show that not executing the default argument expressions at the execution time of the def statement isn't easy or doesn't make sense, or both.

i agree it's a gotcha when you try to use default constructors, though.

link|improve this answer
feedback

This actually has nothing to do with default values, other than that it often comes up as an unexpected behaviour when you write functions with mutable default values.

>>> def foo(a):
    a.append(5)
    print a

>>> a  = [5]
>>> foo(a)
[5, 5]
>>> foo(a)
[5, 5, 5]
>>> foo(a)
[5, 5, 5, 5]
>>> foo(a)
[5, 5, 5, 5, 5]

No default values in sight in this code, but you get exactly the same problem.

The problem is that foo is modifying a mutable variable passed in from the caller, when the caller doesn't expect this. Code like this would be fine if the function was called something like append_5; then the caller would be calling the function in order to modify the value they pass in, and the behaviour would be expected. But such a function would be very unlikely to take a default argument, and probably wouldn't return the list (since the caller already has a reference to that list; the one it just passed in).

Your original foo, with a default argument, shouldn't be modifying a whether it was explicitly passed in or got the default value. Your code should leave mutable arguments alone unless it is clear from the context/name/documentation that the arguments are supposed to be modified. Using mutable values passed in as arguments as local temporaries is an extremely bad idea, whether we're in Python or not and whether there are default arguments involved or not.

If you need to destructively manipulate a local temporary in the course of computing something, and you need to start your manipulation from an argument value, you need to make a copy.

link|improve this answer
feedback

It may be true that:

  1. Someone is using every language/library feature, and
  2. Switching the behavior here would be ill-advised, but

it is entirely consistent to hold to both of the features above and still make another point:

  1. It is a confusing feature and it is unfortunate in Python.

The other answers, or at least some of them either make points 1 and 2 but not 3, or make point 3 and downplay points 1 and 2. But all three are true.

It may be true that switching horses in midstream here would be asking for significant breakage, and that there could be more problems created by changing Python to intuitively handle Stefano's opening snippet. And it may be true that someone who knew Python internals well could explain a minefield of consequences. However,

The existing behavior is not Pythonic, and Python is successful because very little about the language violates the principle of least astonishment anywhere near this badly. It is a real problem, whether or not it would be wise to uproot it. It is a design flaw. If you understand the language much better by trying to trace out the behavior, I can say that C++ does all of this and more; you learn a lot by navigating, for instance, subtle pointer errors. But this is not Pythonic: people who care about Python enough to persevere in the face of this behavior are people who are drawn to the language because Python has far fewer surprises than other language. Dabblers and the curious become Pythonistas when they are astonished at how little time it takes to get something working--not because of a design fl--I mean, hidden logic puzzle--that cuts against the intuitions of programmers who are drawn to Python because it Just Works.

link|improve this answer
feedback

This behavior is not surprising if you take the following into consideration:

  1. The behavior of read-only class attributes upon assignment attempts, and that
  2. Functions are objects (explained well in the accepted answer).

The role of (2) has been covered extensively in this thread. (1) is likely the astonishment causing factor, as this behavior is not "intuitive" when coming from other languages.

From the Python tutorial on classes, regarding (1) an attempt to assign a value to a read-only class attribute:

...all variables found outside of the innermost scope are read-only (an attempt to write to such a variable will simply create a new local variable in the innermost scope, leaving the identically named outer variable unchanged).

Look back to the original example and consider the above points.

def foo(a=[]):
    a.append(5)
    return a

Here foo is an object and a is an attribute of foo (available at foo.func_defs.[0]). Since a is a list, a is mutable and is thus a read-write attribute of foo. It's set to the empty list as specified by the signature when the function is instantiated, and is available for reading and writing as long as the function object exists.

Calling foo without overriding a default uses that default's value from foo.func_defs. In this case, foo.func_defs[0] is used for a within function object's code scope. Changes to a change foo.func_defs[0], which is part of the foo object and persists between execution of the code in foo.

Now, compare this to the example from the documentation on emulating the default argument behavior of other languages, such that the function signature defaults are used every time the function is executed:

def foo(a, L=None):
    if L is None:
        L = []
    L.append(a)
    return L

Taking (1) and (2) into account, one can see why this accomplishes the the desired behavior. When the foo function object is instantiated, foo.func_defs[0] is set to None, an immutable object. When the function is executed with defaults (or, with no parameter specified for L in the function call), foo.func_defs[0] is available in the local scope as L. However, upon L = [], the assignment cannot succeed at foo.func_defs[0], because that attribute is read-only. Thus, per (1), a new local variable also named L is created in the local scope and used for the remainder of the function call. foo.func_defs[0] thus remains unchanged for future invocations of foo.

link|improve this answer
feedback

The solutions here are:

  1. Use none as your default value, and switch on that to create your values at runtime; or
  2. Use a lambda as your default parameter, and call it within a try block to get the default value (this is the sort of thing that lambda abstraction is for).

The second option is nice because users of the function can pass in a callable.

link|improve this answer
feedback

what is the reason for binding the default argument at function definition, and not at function execution?

Well, the default argument is getting bound at runtime (not definition).

My understanding is that the behavior stems from the following facts:

  1. For arguments, Python handles basic types by value (lifetime: function call) and non-basic types by reference (lifetime: reference counting).
  2. It seems to assign a static lifetime to default arguments of non-basic types.

So when needs to use the default argument (non-basic type), it finds the one already allocated.

Following demonstrates the difference in handling of basic and non-basic types.

def foo(a=[]):
    a.append(5)
    print "foo:",a

def bar(a=0):
    a += 1
    print "bar:",a

foo()
foo()
bar()
bar()

Results:

foo: [5]
foo: [5, 5]
bar: 1
bar: 1
link|improve this answer
1  
@Lennart: python handles everything as references to values, and these values can either be immutable (like an integer) or mutable (like a list, or dict). The nature of dynamic languages like python is that the type stays with the value, not with the container of the value. In python, the "container of the value" (the variable name) is just a name to refer to the value. If both a and b have value of 1, means that both a and b are referring to the integer object 1. you don't see this because 1 is immutable, but if it's a list, and both a and b refer to it, modifications are visible in both. – Stefano Borini Jul 16 '09 at 14:50
Yes, you are of course correct, and I was surprise that you aimed this as me. Then I say I has had a slip and written value, when I meant reference. ;-) So I'll try again: @ziffusion: Python handles everything as reference, always. And lists are just as basic as integers. There, that's better. :) – Lennart Regebro Jul 16 '09 at 19:00
uh? I am confused. why did I address my comment to you ? – Stefano Borini Jul 16 '09 at 23:57
I said "value", when I should have said "reference". (I deleted that comment). – Lennart Regebro Jul 17 '09 at 7:30
aha! :) (I need more sleep) – Stefano Borini Jul 17 '09 at 22:49
feedback

This would be a good time for you to google for "python gotchas" and learn to avoid the others :-)

  • Paddy.
link|improve this answer
feedback

protected by ThiefMaster Jan 13 at 16:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.