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 brett.cannon
Recipients brett.cannon, xtreak
Date 2018-11-30.20:07:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543608447.58.0.788709270274.issue35354@psf.upfronthosting.co.za>
In-reply-to
Content
How did you make a recursive generator? The 'yield' would have paused execution. Do you have code you can share to reproduce? Otherwise blowing your stack out is normal behaviour in a function which you can deal with by lowering your stack depth with sys.setrecursionlimit() to one that will raise RecursionError before you blow your stack.
History
Date User Action Args
2018-11-30 20:07:27brett.cannonsetrecipients: + brett.cannon, xtreak
2018-11-30 20:07:27brett.cannonsetmessageid: <1543608447.58.0.788709270274.issue35354@psf.upfronthosting.co.za>
2018-11-30 20:07:27brett.cannonlinkissue35354 messages
2018-11-30 20:07:27brett.cannoncreate