annotate python/closure.py @ 499:84a865a880a8

a new way to view diffs based on sorted lines
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 23 Aug 2013 08:25:41 -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()