Skip to content

Instantly share code, notes, and snippets.

@fridgei
Created March 27, 2014 22:16
Show Gist options
  • Save fridgei/9820244 to your computer and use it in GitHub Desktop.
Save fridgei/9820244 to your computer and use it in GitHub Desktop.
def deprecated(f):
def wrapped(*args, **kwargs):
print "{func} is DEPRECATED!".format(func=f.__name__)
return f(*args, **kwargs)
return wrapped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment