Last active
May 9, 2016 13:48
-
-
Save Xowap/c10fdf6eefca11d02a412bec2027a628 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
| def default(cb, value=None): | |
| # noinspection PyBroadException | |
| try: | |
| return cb() | |
| except: | |
| return value | |
| o = object() | |
| print(default(lambda: o.does.noot.exist, 42)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment