Kristján Valur Jónsson <krist...@ccpgames.com> added the comment:

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.

----------
nosy: +kristjan.jonsson

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14507>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to