Created
February 14, 2020 21:03
-
-
Save dchuvardynskyi/fa14c290bf95ffb235828ebac3f9a604 to your computer and use it in GitHub Desktop.
Count Of Calls Decorator example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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