Skip to content

Instantly share code, notes, and snippets.

@rec
Created July 12, 2020 09:48
Show Gist options
  • Save rec/53912a003e169bc74bce27bc527e7953 to your computer and use it in GitHub Desktop.
Save rec/53912a003e169bc74bce27bc527e7953 to your computer and use it in GitHub Desktop.
dek4_1.py
@print_before3()
def important(lives, money, valuables=None):
pass
@print_before3('BORING:')
def dull(*args, **kwds):
pass
>>> important(23, 105.17, valuables=['dogs'])
DEBUG: important (23, 105.17) {'valuables': ['dogs']}
>>> dull('yawn', tedious='really')
BORING: dull ('yawn',) {'tedious': 'really'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment