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 karzes
Recipients karzes, terry.reedy, tim.peters
Date 2020-10-03.05:10:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1601701832.84.0.677291103701.issue41912@roundup.psfhosted.org>
In-reply-to
Content
Thanks Tim and Terry.  Stackless Python sounds interesting.  It's nice to know that others had the same idea I did, although I tend to shy away from exotic variants since they tend to be less well-supported.  Any chance that CPython will go stackless at some point in the future?

By the way, I saw that I can increase the process stack limit from within a Python app:

    resource.setrlimit(resource.RLIMIT_STACK, (resource.RLIM_INFINITY,
                                               resource.RLIM_INFINITY))

I tried it, and it works (on my Linux system), but of course is unavailable on Windows systems.
History
Date User Action Args
2020-10-03 05:10:32karzessetrecipients: + karzes, tim.peters, terry.reedy
2020-10-03 05:10:32karzessetmessageid: <1601701832.84.0.677291103701.issue41912@roundup.psfhosted.org>
2020-10-03 05:10:32karzeslinkissue41912 messages
2020-10-03 05:10:32karzescreate