Skip to content

Instantly share code, notes, and snippets.

@hub-cap
Created May 23, 2013 21:08
Show Gist options
  • Select an option

  • Save hub-cap/5639433 to your computer and use it in GitHub Desktop.

Select an option

Save hub-cap/5639433 to your computer and use it in GitHub Desktop.
>>> ephemeral_support = None
>>> if ephemeral_support and 1 == 1:
... print foo
...
>>> ephemeral_support = "/some/device/path"
>>> if ephemeral_support and 1 == 1:
... print "foo"
...
foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment