Skip to content

Instantly share code, notes, and snippets.

@davidrenne
Created May 26, 2015 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidrenne/9471ba9b7a1f52e5199a to your computer and use it in GitHub Desktop.
Save davidrenne/9471ba9b7a1f52e5199a to your computer and use it in GitHub Desktop.
Be safe out there kids...
def tester(insert=False, value={}):
if insert:
value['insert'] = True
print(value)
tester(insert=False)
tester(insert=True)
tester(insert=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment