Skip to content

Instantly share code, notes, and snippets.

@robertwb
Created August 16, 2016 09:25
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 robertwb/62df4520bc494412ec887864245cb8a2 to your computer and use it in GitHub Desktop.
Save robertwb/62df4520bc494412ec887864245cb8a2 to your computer and use it in GitHub Desktop.
Attachment mylib.pyx for http://trac.cython.org/ticket/729
import sys
class FUSEError:
pass
def run():
try:
raise RuntimeError("foo")
except FUSEError as e:
print("FUSEError")
except BaseException as e:
print("BaseException")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment