Saim Raza <saimors...@gmail.com> added the comment:
Stack exhaustion doesn't seem to be due to be the root cause. A simple recursive function doesn't crash the interpreter in Python 3.6. >>> def rec(): rec() >>> rec() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<stdin>", line 1, in rec File "<stdin>", line 1, in rec File "<stdin>", line 1, in rec [Previous line repeated 995 more times] RecursionError: maximum recursion depth exceeded ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue36272> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com