annotate python/closure.py @ 177:6ae566bb1a99

add an example of lack of python closures
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 03 Nov 2011 10:39:22 -0700
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
177
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 directory = 'foo'
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2 bar = lambda: directory
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 directory = 'fleem'
6ae566bb1a99 add an example of lack of python closures
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 print bar()