This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jack__d
Recipients behindthebrain, iritkatriel, jack__d
Date 2021-07-28.23:23:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627514590.22.0.546431269358.issue43548@roundup.psfhosted.org>
In-reply-to
Content
@behindthebrain, I noticed that this script behaves weirdly when I try to set breakpoints at various places. However, the problem goes away when I raise the recursion limit. Things in python will not work right if you set the recursion limit to a low value. For example, this hello, world program does not run at a recursion depth of four::

    import sys
    sys.setrecursionlimit(4)

    print('hello, world')
History
Date User Action Args
2021-07-28 23:23:10jack__dsetrecipients: + jack__d, iritkatriel, behindthebrain
2021-07-28 23:23:10jack__dsetmessageid: <1627514590.22.0.546431269358.issue43548@roundup.psfhosted.org>
2021-07-28 23:23:10jack__dlinkissue43548 messages
2021-07-28 23:23:10jack__dcreate