Skip to content

Instantly share code, notes, and snippets.

@dchuvardynskyi
Created February 14, 2020 21:03
Show Gist options
  • Select an option

  • Save dchuvardynskyi/fa14c290bf95ffb235828ebac3f9a604 to your computer and use it in GitHub Desktop.

Select an option

Save dchuvardynskyi/fa14c290bf95ffb235828ebac3f9a604 to your computer and use it in GitHub Desktop.
Count Of Calls Decorator example
from decorators import count_calls
@count_calls
def say_whee():
print("Whee!")
# >>> say_whee()
# Call 1 of 'say_whee'
# Whee!
#
# >>> say_whee()
# Call 2 of 'say_whee'
# Whee!
#
# >>> say_whee.num_calls
# 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment