-
-
Save mattrobenolt/3108423 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foo = map(lambda s: { | |
# lol my lambda's body is indented | |
s = s.upper() | |
print s | |
return s | |
}, ['does', 'the', 'lambda', 'implicitly', 'end', 'after', 'toplevel', 'returns?']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
from __future__ import braces