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 kristjan.jonsson
Recipients ezio.melotti, kristjan.jonsson, pitrou, progrper, rhettinger, terry.reedy
Date 2012-04-15.10:42:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334486567.21.0.0658807288151.issue14507@psf.upfronthosting.co.za>
In-reply-to
Content
You are creating a 100000 level nested structure of iterators.  It is no wonder that you exhaust the stack space of the interpreter.  You would get the same with any iterator combination, nothing special with zip and starmap here.

I can't see that anything can be done about this, unless we can create some sort of non-recursive iternext slot, which returns an evaluation context, rather than an item, similar to what stackless does.
History
Date User Action Args
2012-04-15 10:42:47kristjan.jonssonsetrecipients: + kristjan.jonsson, rhettinger, terry.reedy, pitrou, ezio.melotti, progrper
2012-04-15 10:42:47kristjan.jonssonsetmessageid: <1334486567.21.0.0658807288151.issue14507@psf.upfronthosting.co.za>
2012-04-15 10:42:46kristjan.jonssonlinkissue14507 messages
2012-04-15 10:42:46kristjan.jonssoncreate