Skip to content

Instantly share code, notes, and snippets.

@zsrinivas
Created February 9, 2016 08:25
Show Gist options
  • Save zsrinivas/010689f232bb5d198b89 to your computer and use it in GitHub Desktop.
Save zsrinivas/010689f232bb5d198b89 to your computer and use it in GitHub Desktop.
rarely used python exception handling pattern.
import webbrowser
try:
1 / 0
except Exception as e:
webbrowser.open(
'http://stackoverflow.com/search?q=[python]+' + \
'+'.join(e.args + (type(e).__name__,)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment