show/hide this revision's text 2 added 23 characters in body

It seems that

Python is misbehaving again. The problem, actually behaving as others have stated, is that, while three different defined. Three separate functions are created, but they all close over each have the same closure of the environment they're defined in - that of in this case, the inner loop of global environment (or the for outer function's environment if the loop is placed inside another function). This is exactly the problem, though - in this environment, i is mutated, and the closures all refer to the same i.

Here is the best solution I can come up with - create a function creater and invoke that instead. This will force different environments for each of the functions created:, with a different i in each one.

flist = []

for i in xrange(3):
    def funcC(i):
        def func(x): return x * i
        return func
    flist.append(funcC(i))

for f in flist:
    print f(2)

Note that you must give funcC a parameter, otherwise the inner functions will be different but will refer to the same i, which the loop changes.

This is what happens when you mix side effects and functional programming. I might even go so far as saying python's implementation is correct, in that it does the right job - a closure is closing over its environment (which doesn't change on iterations of a for loop).

show/hide this revision's text 1

It seems that Python is misbehaving again. The problem, as others have stated, is that, while three different functions are created, they all close over the same environment - that of the inner loop of the for loop.

Here is the best solution I can come up with - create a function creater and invoke that instead. This will force different environments for each of the functions created:

flist = []

for i in xrange(3):
    def funcC(i):
        def func(x): return x * i
        return func
    flist.append(funcC(i))

for f in flist:
    print f(2)

Note that you must give funcC a parameter, otherwise the inner functions will be different but will refer to the same i, which the loop changes.

This is what happens when you mix side effects and functional programming. I might even go so far as saying python's implementation is correct, in that it does the right job - a closure is closing over its environment (which doesn't change on iterations of a for loop).