summaryrefslogtreecommitdiffstats
path: root/Objects/iterobject.c
Commit message (Expand)AuthorAgeFilesLines
* gh-106320: Remove private _PyEval function (#108433)Victor Stinner2023-08-241-0/+1
* gh-106084: Remove _PyObject_HasLen() function (#106103)Victor Stinner2023-06-261-0/+1
* gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Raj2023-03-041-2/+2
* gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int...Ionite2023-02-241-6/+16
* gh-99300: Use Py_NewRef() in Objects/ directory (#99335)Victor Stinner2022-11-101-10/+5
* gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...Ofey Chan2022-09-301-2/+7
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-6/+4
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-121-1/+2
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-1/+1
* bpo-44963: Implement send() and throw() methods for anext_awaitable objects (...Pablo Galindo Salgado2021-09-071-22/+96
* bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)Dennis Sweeney2021-04-111-1/+46
* bpo-43770: _PyTypes_Init() inits _PyAnextAwaitable_Type (GH-25266)Victor Stinner2021-04-081-2/+2
* bpo-31861: Fix possible crash in PyAnextAwaitable_New (GH-25005)Pablo Galindo2021-03-241-1/+5
* bpo-31861: Add aiter and anext to builtins (#23847)Joshua Bronson2021-03-231-2/+90
* bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)Victor Stinner2020-04-151-1/+0
* bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner2020-04-141-1/+0
* bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)Hai Shi2020-01-301-2/+2
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-4/+4
* bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...Serhiy Storchaka2018-12-111-4/+6
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-211-0/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-2/+2
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-2/+2
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-291-3/+3
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-0/+2
* Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-1/+1
* calliter_iternext() now uses fast callVictor Stinner2016-08-191-19/+21
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-1/+1
* Issue #23985: Fixed integer overflow in iterator object. Patch bySerhiy Storchaka2015-05-211-0/+5
|\
| * Issue #23985: Fixed integer overflow in iterator object. Patch bySerhiy Storchaka2015-05-211-0/+5
* | Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-1/+1
|/
* Close #17932: Fix an integer overflow issue on Windows 64-bit in iterators:Victor Stinner2013-06-041-1/+1
* Fixed a missing incref introduced by a7ec0a1b0f7cArmin Ronacher2012-10-061-1/+1
* Issue #16148: implemented PEP 424Armin Ronacher2012-10-061-3/+8
* Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...Antoine Pitrou2012-04-041-17/+4
* Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-031-1/+59
* Fix nit (sentinel on lhs of comparison).Raymond Hettinger2010-08-071-3/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-164/+164
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* Move itertools izip() code to builtins as zip(). Complete the renaming.Raymond Hettinger2008-03-131-169/+0
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Added all PyTypeObjects to the appropriate header files.Christian Heimes2007-11-291-3/+3
* Added view and iterator types to collections / _abcollChristian Heimes2007-11-281-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-7/+4
* Remove bogus INCREF of ziptuple: it is aMartin v. Löwis2007-02-061-1/+0
* The daily ritual: fix C89 violations.Guido van Rossum2006-08-261-2/+4
* SF patch 1546297 (with some tweaks):Guido van Rossum2006-08-251-0/+171
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-9/+5
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1