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 pitrou
Recipients giampaolo.rodola, pitrou, vstinner, yselivanov
Date 2017-11-07.13:15:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510060504.4.0.213398074469.issue31970@psf.upfronthosting.co.za>
In-reply-to
Content
Each time a new future, handle or task is created, asyncio with debug mode enabled will parse the whole call stack and create a StackSummary object for it.  Imagine a recursive coroutine: with N nested calls, you get O(N**2) performance.

Ideally debug mode wouldn't slow things too much, at least for development and testing setups.
History
Date User Action Args
2017-11-07 13:15:05pitrousetrecipients: + pitrou, vstinner, giampaolo.rodola, yselivanov
2017-11-07 13:15:04pitrousetmessageid: <1510060504.4.0.213398074469.issue31970@psf.upfronthosting.co.za>
2017-11-07 13:15:04pitroulinkissue31970 messages
2017-11-07 13:15:04pitroucreate