Terry J. Reedy <tjre...@udel.edu> added the comment: I confirmed that increasing the recursion limit can change recursion behavior on Windows.
>>> def f(): g() ... >>> def g(): f() ... >>> f() With the default limit or 1000 or increase to 3000, I get a recursion error. With the limit set to 10000, I get 'MemoryError: stack overflow'. It is not too surprising that the more complicated code prevents getting even that. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32022> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com