Skip to content

Instantly share code, notes, and snippets.

@lsbardel
Created February 18, 2010 12:59
Show Gist options
  • Save lsbardel/307634 to your computer and use it in GitHub Desktop.
Save lsbardel/307634 to your computer and use it in GitHub Desktop.
def sortlist(views, func):
def comp(a,b):
if func(a) > func(b):
return 1
else:
return -1
views.sort(comp)
return views
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment