annotate python/closure.py @ 722:be9f792abaad

mv
author Jeff Hammel <k0scist@gmail.com>
date Tue, 04 Nov 2014 15:11:08 -0800
parents 6ae566bb1a99
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()