Skip to content

Instantly share code, notes, and snippets.

@pcote
Last active August 29, 2015 14:25
Show Gist options
  • Save pcote/3786a2078d4e5992b675 to your computer and use it in GitHub Desktop.
Save pcote/3786a2078d4e5992b675 to your computer and use it in GitHub Desktop.
@count_limiter(3)
def hello(person):
print("hi there {}".format(person))
if __name__ == '__main__':
hello("fred")
hello("george")
hello("jane")
hello("jim") # exception thrown here because it's the 4th call
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment