COMMITS
/ Modules/itertoolsmodule.c February 15, 2022
D
bpo-46728: fix docstring of combinations_with_replacement for consistency (GH-31293)
DongGeon Lee committed
February 8, 2022
October 12, 2021
V
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner committed
October 11, 2021
V
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner committed
September 19, 2021
S
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka committed
September 12, 2021
S
bpo-43413: Fix handling keyword arguments in subclasses of some buitin classes (GH-26456)
Serhiy Storchaka committed
July 5, 2021
S
bpo-44563: Fix error handling in tee.fromiterable() (GH-27020)
Serhiy Storchaka committed
December 5, 2020
B
bpo-42536: GC track recycled tuples (GH-23623)
Brandt Bucher committed
December 1, 2020
R
bpo-38200: Add itertools.pairwise() (GH-23549)
Raymond Hettinger committed
October 27, 2020
V
bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)
Victor Stinner committed
June 22, 2020
V
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner committed
June 7, 2020
H
bpo-40898: Remove redundant if statements in tp_traverse (GH-20692)
Hai Shi committed
April 15, 2020
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
April 10, 2020
E
Generic itertools.chain (GH-19417)
Ethan Smith committed
March 23, 2020
A
bpo-40036: Deleting duplicates in itertoolsmodule.c (GH-18958)
AlphaHot committed
March 22, 2020
D
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na committed
March 17, 2020
D
bpo-1635741: Port itertools module to multiphase initialization (GH-19044)
Dong-hee Na committed
March 6, 2020
A
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester committed
March 4, 2020
A
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
February 7, 2020
V
bpo-39573: Add Py_SET_TYPE() function (GH-18394)
Victor Stinner committed
November 10, 2019
R
Minor readability improvement for argument handling in itertools.repeat() (GH-17101)
Raymond Hettinger committed
October 29, 2019
September 9, 2019
S
bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)
Serhiy Storchaka committed
S
Revert "Raise a RuntimeError when tee iterator is consumed from different threads (GH-15567)" (GH-15736)
Serhiy Storchaka committed
September 1, 2019
S
bpo-15999: Clean up of handling boolean arguments. (GH-15610)
Serhiy Storchaka committed
August 30, 2019
S
bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592)
Sergey Fedoseev committed
August 29, 2019
H
Raise a RuntimeError when tee iterator is consumed from different threads (GH-15567)
HongWeipeng committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
March 26, 2019
Z
bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551)
Zackery Spytz committed
February 25, 2019
S
bpo-36030: Add _PyTuple_FromArray() function (GH-11954)
Sergey Fedoseev committed
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
December 11, 2018
S
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047)
Serhiy Storchaka committed
September 24, 2018
L
bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345)
Lisa Roach committed
September 11, 2018
T
bpo-20180: convert most of itertoolsmodule.c to use Argument Clinic (GH-9164)
Tal Einat committed
September 10, 2018
T
bpo-20180: itertools.groupby Argument Clinic conversion (GH-4170)
Tal Einat committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
February 2, 2018
O
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
oldk committed
January 25, 2018
S
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
Serhiy Storchaka committed
November 11, 2017
S
bpo-31572: Silence only AttributeError when get the __copy__ attribute in itertools.tee(). (#3724)
Serhiy Storchaka committed
September 26, 2017
S
bpo-30347: Stop crashes when concurrently iterate over itertools.groupby() iterators. (#1557)
Serhiy Storchaka committed
September 25, 2017
R
bpo-27385: Clarify docstring for groupby() (#3738)
Raymond Hettinger committed
September 24, 2017
S
bpo-30346: An iterator produced by the itertools.groupby() iterator (#1569)
Serhiy Storchaka committed
September 21, 2017
S
bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631)
Serhiy Storchaka committed
September 17, 2017
S
bpo-31497: Add private helper _PyType_Name(). (#3630)
Serhiy Storchaka committed
June 8, 2017
S
bpo-30592: Fixed error messages for some builtins. (#1996)
Serhiy Storchaka committed
W
bpo-30537: use PyNumber in itertools.islice instead of PyLong (#1918)
Will Roberts committed
April 19, 2017
S
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)
Serhiy Storchaka committed
March 30, 2017
T
bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#889)
T. Wouters committed