Files
official-images/test/tests/python-stack-size/container.py
T
2017-12-18 18:06:39 +02:00

14 lines
155 B
Python

import threading
import sys
def fun(i):
try:
fun(i+1)
except:
sys.exit(0)
t = threading.Thread(target=fun, args=[1])
t.start()