Skip to content

Instantly share code, notes, and snippets.

@fakedrake
Created August 17, 2012 15:10
Show Gist options
  • Save fakedrake/3379699 to your computer and use it in GitHub Desktop.
Save fakedrake/3379699 to your computer and use it in GitHub Desktop.
bit more lexible equality
def matches(v, l):
try:
return v in l
except TypeError:
try:
return l in v
except TypeError:
return l == v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment