Last active
January 4, 2016 13:08
-
-
Save skatenerd/8625673 to your computer and use it in GitHub Desktop.
lol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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