Skip to content

Instantly share code, notes, and snippets.

@willcalderbank
Created November 24, 2014 09:59
Show Gist options
  • Save willcalderbank/62dc55864ce34e014e45 to your computer and use it in GitHub Desktop.
Save willcalderbank/62dc55864ce34e014e45 to your computer and use it in GitHub Desktop.
cProfile
import cProfile
def do_cprofile(func):
def profiled_func(*args, **kwargs):
profile = cProfile.Profile()
try:
profile.enable()
result = func(*args, **kwargs)
profile.disable()
return result
finally:
profile.print_stats()
return profiled_func
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment