Skip to content

Instantly share code, notes, and snippets.

@eloyz
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eloyz/00196285cc0eedeb85e5 to your computer and use it in GitHub Desktop.
Save eloyz/00196285cc0eedeb85e5 to your computer and use it in GitHub Desktop.
Function that tests if all values in dictionary are a None type object
def is_none(d):
"""Returns True if dictionary contains
all None type objects
"""
for i in d.itervalues():
if i is not None:
return False
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment