Skip to content

Instantly share code, notes, and snippets.

@phyng
Created May 26, 2015 08:18
Show Gist options
  • Save phyng/a647bf481d9132ed3197 to your computer and use it in GitHub Desktop.
Save phyng/a647bf481d9132ed3197 to your computer and use it in GitHub Desktop.
if_as.py
before:
something = get_something()
if something:
do_something(something)
after:
if get_something() as something:
do_something(something)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment