summaryrefslogtreecommitdiff
path: root/Objects/genobject.c
Commit message (Expand)AuthorAgeFilesLines
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-300/+300
* Merged revisions 70642,70648,70656,70661,70765,70773,70789,70824-70825,70828,...Georg Brandl2009-04-051-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-2/+2
* Renamed PyString to PyBytesChristian Heimes2008-05-261-2/+2
* Make generator repr consistent with function and code object repr.Georg Brandl2008-05-161-1/+1
* #2863: add gen.__name__ and add this name to generator repr().Georg Brandl2008-05-151-2/+32
* #1473257: add generator.gi_code attribute that refers toGeorg Brandl2008-01-261-0/+5
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Generators had their throw() method allowing string exceptions. That's aBrett Cannon2007-09-111-4/+1
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-1/+1
* gen_del(): Looks like much this was copy/pasted fromTim Peters2006-04-151-1/+1
* - Whitespace normalizationThomas Wouters2006-04-151-12/+14
* Fix SF#1470508: crash in generator cycle finalization. There were twoPhillip J. Eby2006-04-151-10/+11
* Add a cast to make code compile with a C++ compiler.Anthony Baxter2006-04-131-1/+1
* Don't set gi_frame to Py_None, use NULL instead, eliminating some insanePhillip J. Eby2006-04-121-7/+7
* wrap docstrings so they are less than 80 columns. add spaces after commas.Neal Norwitz2006-04-121-3/+5
* gen_throw(): The caller doesn't own PyArg_ParseTuple()Tim Peters2006-04-121-3/+1
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-0/+20
* Support throw() of string exceptions.Phillip J. Eby2006-03-251-1/+4
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-1/+1
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-3/+3
* * Refcount leak. It was just a reference to Py_None, but still.Armin Rigo2006-02-141-3/+9
* Fix a too-aggressive assert (see SF#1257960). Previously, gen_iternextPhillip J. Eby2005-08-131-1/+1
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-5/+234
* SF patch #1020188: Use Py_CLEAR where necessary to avoid crashesRaymond Hettinger2004-09-011-2/+1
* Patch #966493: Cleanup generator/eval_frame exposure.Martin v. Löwis2004-06-271-1/+1
* * Factor out PyObject_SelfIter().Raymond Hettinger2004-06-121-9/+3
* Patch #957398: Add public API for Generator Object/Type.Martin v. Löwis2004-06-011-0/+129