summaryrefslogtreecommitdiffstats
path: root/Include/genobject.h
Commit message (Collapse)AuthorAgeFilesLines
* Don't set gi_frame to Py_None, use NULL instead, eliminating some insanePhillip J. Eby2006-04-121-0/+1
| | | | pointer dereferences.
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-0/+1
| | | | | | | | that are suspended outside of any try/except/finally blocks to be garbage collected even if they are part of a cycle. Generators that suspend inside of an active try/except or try/finally block (including those created by a ``with`` statement) are still not GC-able if they are part of a cycle, however.
* Patch #966493: Cleanup generator/eval_frame exposure.Martin v. Löwis2004-06-271-2/+4
|
* Patch #957398: Add public API for Generator Object/Type.Martin v. Löwis2004-06-011-0/+33