Skip to content

Instantly share code, notes, and snippets.

@skatenerd
Last active January 4, 2016 13:08
Show Gist options
  • Save skatenerd/8625673 to your computer and use it in GitHub Desktop.
Save skatenerd/8625673 to your computer and use it in GitHub Desktop.
lol
import sys
def foo(i):
sys.setrecursionlimit(i+5)
print(i)
foo(i+1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment