COMMITS
/ Objects/iterobject.c September 7, 2021
M
bpo-44963: Implement send() and throw() methods for anext_awaitable objects (GH-27955)
Miss Islington (bot) committed
April 11, 2021
D
bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)
Dennis Sweeney committed
April 8, 2021
V
bpo-43770: _PyTypes_Init() inits _PyAnextAwaitable_Type (GH-25266)
Victor Stinner committed
March 24, 2021
P
bpo-31861: Fix possible crash in PyAnextAwaitable_New (GH-25005)
Pablo Galindo committed
March 23, 2021
J
bpo-31861: Add aiter and anext to builtins (#23847)
Joshua Bronson committed
April 15, 2020
V
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Victor Stinner committed
April 14, 2020
V
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner committed
January 30, 2020
H
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
December 11, 2018
S
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047)
Serhiy Storchaka committed
November 21, 2018
V
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
September 8, 2017
E
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow committed
August 22, 2016
V
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
Victor Stinner committed
August 19, 2016
V
calliter_iternext() now uses fast call
Victor Stinner committed
March 30, 2016
S
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka committed
May 21, 2015
S
Issue #23985: Fixed integer overflow in iterator object. Patch by
Serhiy Storchaka committed
S
Issue #23985: Fixed integer overflow in iterator object. Patch by
Serhiy Storchaka committed
March 18, 2015
S
Removed unintentional trailing spaces in non-external and non-generated C files.
Serhiy Storchaka committed
June 4, 2013
V
Close #17932: Fix an integer overflow issue on Windows 64-bit in iterators:
Victor Stinner committed
October 6, 2012
A
Fixed a missing incref introduced by a7ec0a1b0f7c
Armin Ronacher committed
A
Issue #16148: implemented PEP 424
Armin Ronacher committed
April 4, 2012
A
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI.
Antoine Pitrou committed
April 3, 2012
K
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson committed
August 7, 2010
R
Fix nit (sentinel on lhs of comparison).
Raymond Hettinger committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed
February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
March 13, 2008
R
Move itertools izip() code to builtins as zip(). Complete the renaming.
Raymond Hettinger committed
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
November 29, 2007
C
Added all PyTypeObjects to the appropriate header files.
Christian Heimes committed
November 28, 2007
C
Added view and iterator types to collections / _abcoll
Christian Heimes committed
July 21, 2007
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
February 6, 2007
M
Remove bogus INCREF of ziptuple: it is a
Martin v. Löwis committed
August 26, 2006
G
The daily ritual: fix C89 violations.
Guido van Rossum committed
August 25, 2006
G
SF patch 1546297 (with some tweaks):
Guido van Rossum committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
February 16, 2006
M
Use Py_ssize_t for counts and sizes.
Martin v. Löwis committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
February 11, 2006
A
Renamed _length_cue() to __length_hint__(). See:
Armin Rigo committed
September 24, 2005
R
Convert iterator __len__() methods to a private API.
Raymond Hettinger committed
September 1, 2004
R
SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes
Raymond Hettinger committed
April 12, 2004
R
* Add unittests for iterators that report their length
Raymond Hettinger committed
March 18, 2004
R
Make iterators length transparent where possible.
Raymond Hettinger committed
June 25, 2003
W
Whitespace normalization.
Walter Dörwald committed
March 17, 2003
R
Renamed PyObject_GenericGetIter to PyObject_SelfIter
Raymond Hettinger committed
R
Created PyObject_GenericGetIter().
Raymond Hettinger committed
August 16, 2002
G
Squash a few calls to the hideously expensive PyObject_CallObject(o,a)
Guido van Rossum committed