Skip to content

Instantly share code, notes, and snippets.

@taizilongxu
Last active August 29, 2015 14:19
Show Gist options
  • Save taizilongxu/7289b5334390a7b715ec to your computer and use it in GitHub Desktop.
Save taizilongxu/7289b5334390a7b715ec to your computer and use it in GitHub Desktop.
def timeit(func, *args, **kw):
def wrap():
print time.time()
func(*args, **kw)
print time.time()
return wrap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment