Python function calls are bleeding scope, stateful, failing to initialize parameters? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T12:16:21Zhttp://stackoverflow.com/feeds/question/959113http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/959113/python-function-calls-are-bleeding-scope-stateful-failing-to-initialize-paramet2Python function calls are bleeding scope, stateful, failing to initialize parameters?gotgenes2009-06-06T06:15:00Z2009-06-07T12:06:47Z
<p>Before I have the audacity to file a bug report, I thought I'd check my assumptions among wiser Pythonistas here. I encountered a baffling case today, so I whittled it down to a toy example, shown below:</p>
<pre><code>#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
A little script to demonstrate that a function won't re-initialize its
list parameters between calls, but instead allows them to retain state.
"""
def bleedscope(a=[], b=[]):
"""
On each call, unless explicitly passed, both `a` and `b` should be
initialized as empty lists.
"""
c = a
if b:
c.extend(b)
return len(c)
x = bleedscope(b=[1])
print x # Should be 1, as expected.
x = bleedscope(b=[2])
print x # Expect also to be 1, but it's 2. `a` is retained.
x = bleedscope(a=[1])
print x # Now 1 as expected.
x = bleedscope(b=[3])
print x # 1 as expected? No, it's 3! Insanity!
</code></pre>
<p>I thought function arguments were local in scope to the function, and were garbage-collected at the end of a function call, never to retain state between them. I have tested the above script on Python 2.5.2 and Python 2.6.1, though, and my understanding does not the results. Argument <code>a</code> certainly retains state between most of these calls; the most perplexing one being the final call to <code>bleedscope</code>, where it skips the state of the previous call and goes back to the state at the end of the second (i.e., <code>[1, 2]</code>). [I suggest running this in your favorite debugger to see for yourself. If you don't have one, I suggest <a href="http://winpdb.org/" rel="nofollow">Winpdb</a> as a solid FOSS standalone Python debugger.]</p>
<p>What's going on here?</p>
http://stackoverflow.com/questions/959113/python-function-calls-are-bleeding-scope-stateful-failing-to-initialize-paramet/959118#95911810Answer by Kai for Python function calls are bleeding scope, stateful, failing to initialize parameters?Kai2009-06-06T06:20:01Z2009-06-06T06:20:01Z<p>In Python default parameter values only get initialized when the def call is parsed. In the case of an object (such as your lists), it gets reused between calls. Take a look at this article about it, which also provides the necessary workaround:</p>
<p><a href="http://effbot.org/zone/default-values.htm" rel="nofollow">http://effbot.org/zone/default-values.htm</a></p>
http://stackoverflow.com/questions/959113/python-function-calls-are-bleeding-scope-stateful-failing-to-initialize-paramet/959121#9591214Answer by Unknown for Python function calls are bleeding scope, stateful, failing to initialize parameters?Unknown2009-06-06T06:21:31Z2009-06-06T06:21:31Z<p>This is your problem:</p>
<pre><code>def bleedscope(a=[], b=[]):
</code></pre>
<p>it should be</p>
<pre><code>def bleedscope(a=None, b=None):
if a is None: a = []
if b is None: b = []
</code></pre>
<p>The default parameters are only executed once when the function is parsed, thus using the same 2 lists every time.</p>
http://stackoverflow.com/questions/959113/python-function-calls-are-bleeding-scope-stateful-failing-to-initialize-paramet/959131#9591311Answer by subtenante for Python function calls are bleeding scope, stateful, failing to initialize parameters?subtenante2009-06-06T06:33:59Z2009-06-06T06:33:59Z<p>Funnily enough, your input and your output are quite similar, for totally accidental reasons.</p>
<p>Actually what happens with Python is that the default values for a and b in your method declaration are "static" values. They are instanciated once at the method definition. So your default "a" is pushed each time you do not pass an "a" as argument.</p>
<p>Put a "print a" at the beginning of your method to see that happen.</p>
http://stackoverflow.com/questions/959113/python-function-calls-are-bleeding-scope-stateful-failing-to-initialize-paramet/961780#9617801Answer by John Machin for Python function calls are bleeding scope, stateful, failing to initialize parameters?John Machin2009-06-07T12:06:47Z2009-06-07T12:06:47Z<p>It's a FAQ.</p>
<pre><code>http://www.python.org/doc/faq/general/#why-are-default-values-shared-between-objects
</code></pre>