mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
10 lines
177 B
Python
10 lines
177 B
Python
#!/usr/bin/env python
|
|
|
|
# No bug report AFAIK, mail on python-dev on 2006-01-10
|
|
import sys
|
|
|
|
sys.setrecursionlimit(1 << 30)
|
|
f = lambda f:f(f)
|
|
|
|
if __name__ == '__main__':
|
|
f(f)
|