On Wed, Aug 31, 2011 at 9:45 AM, Travis Parks <jehugalea...@gmail.com> wrote: > I was a little disappointed the other day when I realized that > closures were read-only. I like to use closures quite a bit.
Assuming I'm intuiting your question correctly, then you're incorrect; they are "read/write". You just need a `nonlocal` declaration for the variables in question. See http://www.python.org/dev/peps/pep-3104/ and http://docs.python.org/release/3.1.3/reference/simple_stmts.html#nonlocal for details. Cheers, Chris -- http://mail.python.org/mailman/listinfo/python-list