| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-106320: Remove private _PyEval function (#108433) | Victor Stinner | 2023-08-24 | 1 | -0/+1 |
|
|
* | gh-106084: Remove _PyObject_HasLen() function (#106103) | Victor Stinner | 2023-06-26 | 1 | -0/+1 |
|
|
* | gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera... | Raj | 2023-03-04 | 1 | -2/+2 |
|
|
* | gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int... | Ionite | 2023-02-24 | 1 | -6/+16 |
|
|
* | gh-99300: Use Py_NewRef() in Objects/ directory (#99335) | Victor Stinner | 2022-11-10 | 1 | -10/+5 |
|
|
* | gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro... | Ofey Chan | 2022-09-30 | 1 | -2/+7 |
|
|
* | bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g... | Eric Snow | 2022-02-08 | 1 | -6/+4 |
|
|
* | bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895) | Victor Stinner | 2021-10-12 | 1 | -1/+2 |
|
|
* | bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891) | Victor Stinner | 2021-10-11 | 1 | -1/+1 |
|
|
* | bpo-44963: Implement send() and throw() methods for anext_awaitable objects (... | Pablo Galindo Salgado | 2021-09-07 | 1 | -22/+96 |
|
|
* | bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238) | Dennis Sweeney | 2021-04-11 | 1 | -1/+46 |
|
|
* | bpo-43770: _PyTypes_Init() inits _PyAnextAwaitable_Type (GH-25266) | Victor Stinner | 2021-04-08 | 1 | -2/+2 |
|
|
* | bpo-31861: Fix possible crash in PyAnextAwaitable_New (GH-25005) | Pablo Galindo | 2021-03-24 | 1 | -1/+5 |
|
|
* | bpo-31861: Add aiter and anext to builtins (#23847) | Joshua Bronson | 2021-03-23 | 1 | -2/+90 |
|
|
* | bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) | Victor Stinner | 2020-04-15 | 1 | -1/+0 |
|
|
* | bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) | Victor Stinner | 2020-04-14 | 1 | -1/+0 |
|
|
* | bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) | Hai Shi | 2020-01-30 | 1 | -2/+2 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -4/+4 |
|
|
* | bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11... | Serhiy Storchaka | 2018-12-11 | 1 | -4/+6 |
|
|
* | bpo-35081: Add Include/internal/pycore_object.h (GH-10640) | Victor Stinner | 2018-11-21 | 1 | -0/+1 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -2/+2 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -2/+2 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH... | Siddhesh Poyarekar | 2018-04-29 | 1 | -3/+3 |
|
|
* | bpo-30860: Consolidate stateful runtime globals. (#3397) | Eric Snow | 2017-09-08 | 1 | -0/+2 |
|
|
* | Rename _PyObject_FastCall() to _PyObject_FastCallDict() | Victor Stinner | 2016-08-22 | 1 | -1/+1 |
|
|
* | calliter_iternext() now uses fast call | Victor Stinner | 2016-08-19 | 1 | -19/+21 |
|
|
* | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 1 | -1/+1 |
|
|
* | Issue #23985: Fixed integer overflow in iterator object. Patch by | Serhiy Storchaka | 2015-05-21 | 1 | -0/+5 |
|\ |
|
| * | Issue #23985: Fixed integer overflow in iterator object. Patch by | Serhiy Storchaka | 2015-05-21 | 1 | -0/+5 |
|
|
* | | Removed unintentional trailing spaces in non-external and non-generated C files. | Serhiy Storchaka | 2015-03-18 | 1 | -1/+1 |
|/ |
|
* | Close #17932: Fix an integer overflow issue on Windows 64-bit in iterators: | Victor Stinner | 2013-06-04 | 1 | -1/+1 |
|
|
* | Fixed a missing incref introduced by a7ec0a1b0f7c | Armin Ronacher | 2012-10-06 | 1 | -1/+1 |
|
|
* | Issue #16148: implemented PEP 424 | Armin Ronacher | 2012-10-06 | 1 | -3/+8 |
|
|
* | Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t... | Antoine Pitrou | 2012-04-04 | 1 | -17/+4 |
|
|
* | Issue #14288: Serialization support for builtin iterators. | Kristján Valur Jónsson | 2012-04-03 | 1 | -1/+59 |
|
|
* | Fix nit (sentinel on lhs of comparison). | Raymond Hettinger | 2010-08-07 | 1 | -3/+1 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -164/+164 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -2/+2 |
|
|
* | Move itertools izip() code to builtins as zip(). Complete the renaming. | Raymond Hettinger | 2008-03-13 | 1 | -169/+0 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -2/+2 |
|
|
* | Added all PyTypeObjects to the appropriate header files. | Christian Heimes | 2007-11-29 | 1 | -3/+3 |
|
|
* | Added view and iterator types to collections / _abcoll | Christian Heimes | 2007-11-28 | 1 | -1/+1 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -7/+4 |
|
|
* | Remove bogus INCREF of ziptuple: it is a | Martin v. Löwis | 2007-02-06 | 1 | -1/+0 |
|
|
* | The daily ritual: fix C89 violations. | Guido van Rossum | 2006-08-26 | 1 | -2/+4 |
|
|
* | SF patch 1546297 (with some tweaks): | Guido van Rossum | 2006-08-25 | 1 | -0/+171 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -9/+5 |
|
|
* | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -1/+1 |
|
|