Skip to content

Instantly share code, notes, and snippets.

@sevas
Created September 11, 2010 10:49
Show Gist options
  • Save sevas/575083 to your computer and use it in GitHub Desktop.
Save sevas/575083 to your computer and use it in GitHub Desktop.
import psyco
psyco.full()
def foo(arg):
"""triggers a breakpoint"""
i, j, k = [arg]*3
1/0
return arg*2
if __name__ == '__main__':
print foo(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment