[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2021-05-18 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer getting bugfixes. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2021-02-12 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +Mark.Shannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2020-01-15 Thread Valentyn Tymofieiev
Valentyn Tymofieiev added the comment: The stack is fairly deep here, and I didn't have time to filter out the smallest repro. Since this check is best effort, and not reproducible on the 3.8, perhaps this is a low-priority issue. Thanks. -- nosy: +brett.cannon

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2019-11-27 Thread Brett Cannon
Change by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2019-10-28 Thread Brett Cannon
Brett Cannon added the comment: Can you provide a small reproducer? Otherwise the recursion check is mostly best effort if you have recursion in C code which never goes out to Python code where the recursion check is implemented. -- nosy: +brett.cannon

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2019-10-25 Thread Valentyn Tymofieiev
Valentyn Tymofieiev added the comment: I observed this issue in Python 3.7.2, 3.7.4, 3.7.5, however it seems to be fixed in 3.8.0. -- ___ Python tracker ___

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2019-10-25 Thread Valentyn Tymofieiev
Change by Valentyn Tymofieiev : -- type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38593] Python 3.7 does not catch infinite recursion for some values of sys.getrecursionlimit()

2019-10-25 Thread Valentyn Tymofieiev
New submission from Valentyn Tymofieiev : While investigating an issue[1] in Apache Beam, we observed that Python 3.7 does not catch an infinite recursion for some values of sys.getrecursionlimit(). Repro steps: docker run -it --entrypoint=/bin/bash python:3.7-stretch git clone