Iterating generator from C

Christian Tismer tismer at stackless.com
Mon May 15 09:53:12 EDT 2006


Sven Suursoho wrote:
> Hi,
> 
> 
> I am working on project that has embedded python interpreter to run  
> user-specified python procedures. Those procedures might return any  
> iterable object with set of result data -- basically everything for which  
> iter() returns valid object (list, tuple, dict, iterator etc)
> 
> It works ok, except generator under Python 2.4 with debugging enabled (see  
> http://sourceforge.net/tracker/index.php?func=detail&aid=1483133&group_id=5470&atid=105470).
> 
> Is there any way to rewrite following program to handle returned generator  
> without hitting this bug?

I found this bug as well, and I think the fix should be
back-ported.
This problem can only show up when you are comiling a C
extension, anyway.
Why don't you just apply the fix and compile your own?
It is just a wrong assertion, anyway.

ciao - chris

-- 
Christian Tismer             :^)   <mailto:tismer at stackless.com>
tismerysoft GmbH             :     Have a break! Take a ride on Python's
Johannes-Niemeyer-Weg 9A     :    *Starship* http://starship.python.net/
14109 Berlin                 :     PGP key -> http://wwwkeys.pgp.net/
work +49 30 802 86 56  mobile +49 173 24 18 776  fax +49 30 80 90 57 05
PGP 0x57F3BF04       9064 F4E1 D754 C2FF 1619  305B C09C 5A3B 57F3 BF04
      whom do you want to sponsor today?   http://www.stackless.com/



More information about the Python-list mailing list