Skip to content

Instantly share code, notes, and snippets.

@Xowap
Last active May 9, 2016 13:48
Show Gist options
  • Select an option

  • Save Xowap/c10fdf6eefca11d02a412bec2027a628 to your computer and use it in GitHub Desktop.

Select an option

Save Xowap/c10fdf6eefca11d02a412bec2027a628 to your computer and use it in GitHub Desktop.
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