Skip to content

Instantly share code, notes, and snippets.

@lwzm
Created June 25, 2014 09:30
Show Gist options
  • Select an option

  • Save lwzm/15ffdcc7e88a4b54a352 to your computer and use it in GitHub Desktop.

Select an option

Save lwzm/15ffdcc7e88a4b54a352 to your computer and use it in GitHub Desktop.
def timeit(func):
from time import time
def wrapper(*args, **kwargs):
t = time()
func(*args, **kwargs)
print(func.__name__, time() - t)
return wrapper
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment