[issue41834] Remove _Py_CheckRecursionLimit variable

2020-10-01 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue41834] Remove _Py_CheckRecursionLimit variable

2020-09-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 19c3ac92bf73f1902cff846988552fd7bb8a8621 by Victor Stinner in branch 'master': bpo-41834: Remove _Py_CheckRecursionLimit variable (GH-22359) https://github.com/python/cpython/commit/19c3ac92bf73f1902cff846988552fd7bb8a8621 --

[issue41834] Remove _Py_CheckRecursionLimit variable

2020-09-22 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +21397 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22359 ___ Python tracker ___ _

[issue41834] Remove _Py_CheckRecursionLimit variable

2020-09-22 Thread STINNER Victor
New submission from STINNER Victor : _Py_CheckRecursionLimit variable is no longer needed and can be removed. In Python 3.9, I added a recursion limit per interpreter. In Python 3.8 and older, it was used by _Py_MakeRecCheck() macro to check for recursion error. Previously, the _Py_CheckRec