Skip to content

Instantly share code, notes, and snippets.

@sheavalentine
sheavalentine / gist:d829ad091149a1463a3b
Last active May 11, 2016 01:59
The magic of maybe

The Magic of Maybe

The Pattern

Consider the following code

def do_some_stuff(x)
  try:
    val = f(x)
  except NameError, e:
    val = False
  return va;