....at least, I think that I'm having a problem understanding the way
closures work.
I'm trying to define a function for an object which will take certain
objects from the parent scope at the time that function is defined.
For some reason, if I do this function definition in a loop, the
locals given by that function (is this a closure?) are changed each
iteration of the loop, whereas if the function definition is isn't
looped over, I get the behavior I desire. Can anyone provide any
insight for me?
thanks,
-tom!
First, the output:
Test 1 doesn't work the way I would expect:
Test 4 says, "Test 0"
Test 4 says, "Test 1"
Test 4 says, "Test 2"
Test 4 says, "Test 3"
Test 4 says, "Test 4"
....but test 2 does?
Test 0 says, "Test 0"
Test 1 says, "Test 1"
Test 2 says, "Test 2"
Test 3 says, "Test 3"
Test 4 says, "Test 4"
Next, the program:
class Test:
def __init__(self, name):
self.name = name
def DoCall(self):
self.ExternalCall(self.name)
# The first test.
def CreateTests1(count):
tests = []
for i in xrange(count):
name = 'Test %d' % i
t = Test(name)
tests.append(t)
def ExCall(text):
print '%s says, "%s"' % (name, text)
t.ExternalCall = ExCall
return tests
# The second test.
def CreateTests2(count):
tests = []
for i in xrange(count):
t = CreateTest(i)
tests.append(t)
return tests
def CreateTest(index):
name = 'Test %d' % index
t = Test(name)
def ExCall(text):
print '%s says, "%s"' % (name, text)
t.ExternalCall = ExCall
return t
print 'Test 1 doesn\'t work the way I would expect:'
for t in CreateTests1(5):
t.DoCall()
print '\n...but test 2 does?'
for t in CreateTests2(5):
t.DoCall() 3 1296
Tom Plunket wrote in news:cm********************************@4ax.com in
comp.lang.python:
...at least, I think that I'm having a problem understanding the way
closures work.
I'm trying to define a function for an object which will take certain
objects from the parent scope at the time that function is defined.
For some reason, if I do this function definition in a loop, the
locals given by that function (is this a closure?) are changed each
iteration of the loop, whereas if the function definition is isn't
looped over, I get the behavior I desire. Can anyone provide any
insight for me?
Test 1 doesn't work the way I would expect:
Test 4 says, "Test 0"
Test 4 says, "Test 4"
def CreateTests1(count):
tests = []
for i in xrange(count):
name = 'Test %d' % i
t = Test(name)
tests.append(t)
def ExCall(text):
print '%s says, "%s"' % (name, text)
t.ExternalCall = ExCall
return tests
"name" in the above code is bound to a an entry in "CreateTests1"'s
locals, and ExCall has a (hidden) reference to that locals, so
by the time ExCall is finally called the value associated
with "name" has been replaced by (count - 1).
The solution (as always) is to add another level of indirection:
def create_tests( count ):
def make( arg ):
def ExCall( text ):
print arg, text
return ExCall
tests = []
for i in range( count ):
name = i
t = Test( name )
t.ExternalCall = make( name )
In the above, every call to make() creates a new frame (a new set
of locals) and binds the value of the passed in "name" to the
name "arg" in this new frame, it will be this value that is
eventually printed.
There is a trick with default arguments that lets you do
what you want with a bit less faffing about :
>>r = [] for i in range(10):
def f( i = i ):
print i
r.append( f )
>>for i in r:
i()
In this example the value of "i" is bound to the default argument
for the function "f" every time the def f() statments are executed.
Rob.
-- http://www.victim-prime.dsl.pipex.com/
On 12 dic, 17:23, Tom Plunket <t...@fancy.orgwrote:
...at least, I think that I'm having a problem understanding the way
closures work.
I'm trying to define a function for an object which will take certain
objects from the parent scope at the time that function is defined.
def CreateTests1(count):
tests = []
for i in xrange(count):
name = 'Test %d' % i
t = Test(name)
tests.append(t)
def ExCall(text):
print '%s says, "%s"' % (name, text)
t.ExternalCall = ExCall
return tests
name, inside ExCall, is a free variable. Python builds a closure
including the string whose name is "name" in the enclosing scope. Not
the *value* which happens to have at this momment. When you execute
ExCall, the reference to name yields its last, current, value.
If you want "the value at the moment the function is created" you can
use a default argument:
def ExCall(text, name=name): ...
Your second test works because you don't modify "name" between the
original definition and its execution.
--
Gabriel Genellina
Rob Williscroft wrote:
"name" in the above code is bound to a an entry in "CreateTests1"'s
locals, and ExCall has a (hidden) reference to that locals, so
by the time ExCall is finally called the value associated
with "name" has been replaced by (count - 1).
Ah, I got it. Thanks. Thanks too to Gabriel.
-tom! This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Derek |
last post by:
Hi,
I've built a rather large CGI that dumps a lot of data and a fairly
complex javascript app out to the client's browser. Granted this may
be poor style according to someone web design...
|
by: rdlebreton |
last post by:
Hi, Folks!
I've been trying to develop my own version of these draggable
layers and I have been limiting myself to IE6...for now. I have
looked at some other examples to get ideas of creating...
|
by: Fabio Cavassini |
last post by:
I'm new to JavaScript and this is annoying me. I have defined a "class"
(JavaScript OO seems really strange to me...) in the following way:
function StateSuggestions(pSource) {
this.source =...
|
by: Dasn |
last post by:
Hi, there.
'lines' is a large list of strings each of which is seperated by '\t'
I wanna split each string into a list. For speed, using map() instead
of 'for' loop. 'map(str.split, lines)'...
|
by: Leo Meyer |
last post by:
Hello,
somewhere I have read that JavaScript supports closures. Does someone know
how to make them work?
What I want to do is this:
function f1(x, obj) {
var eventhandler =...
|
by: Dan Michael Heggå |
last post by:
Hi,
I've working on inplace-editing. My problem is the following: This
works in all browsers:
myDiv.innerHTML = "<p>...</p>";
but this doesn't work in IE:
myDiv.innerHTML =...
|
by: alain |
last post by:
Hi,
I have a problem with closures.
I am trying to implement yet another design by contract decorator which
would look like the following:
<pre>
def contract(f):
def newf(*args, **kw):...
|
by: king kikapu |
last post by:
Hi,
i am trying, to no avail yet, to take a C#'s overloaded functions
skeleton and rewrite it in Python by using closures.
I read somewhere on the net (http://dirtsimple.org/2004/12/python-is-...
|
by: Aaron \Castironpi\ Brady |
last post by:
Hello all,
To me, this is a somewhat unintuitive behavior. I want to discuss the
parts of it I don't understand.
.... f= lambda: n
....
9
9
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: ezappsrUS |
last post by:
Hi,
I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
| |