Skip to content

Instantly share code, notes, and snippets.

@fmayer
Created March 6, 2011 21:55
Show Gist options
  • Save fmayer/857728 to your computer and use it in GitHub Desktop.
Save fmayer/857728 to your computer and use it in GitHub Desktop.
def doc(docstring):
def deco(fn):
fn.__doc__ = docstring
return fn
return deco
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment