annotate python/closure.py @ 459:32667483d1c5

python/setup_repo.py
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 10 Aug 2013 18:11:44 -0700
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()