Closures and Partial Function Application

Chris Rebert clp2 at rebertia.com
Wed Aug 31 13:18:57 EDT 2011


On Wed, Aug 31, 2011 at 9:45 AM, Travis Parks <jehugaleahsa at 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



More information about the Python-list mailing list