summaryrefslogtreecommitdiffstats
path: root/Doc/library/itertools.rst
Commit message (Expand)AuthorAgeFilesLines
* Consistently spell out *predicate* instead of *pred*. (gh-116308)Raymond Hettinger2024-03-041-23/+16
* Make the iter_except() recipe more compact. (gh-116132)Raymond Hettinger2024-02-291-20/+1
* Update an out-of-date example in the itertools recipe intro (gh-116082)Raymond Hettinger2024-02-281-1/+1
* Improve all_equal() recipe (gh-116081)Raymond Hettinger2024-02-281-3/+4
* gh-113479: Link to workaround for subtle issue with takewhile() (gh-115890)Raymond Hettinger2024-02-251-33/+41
* Minor algebraic simplification for the totient() recipe (gh-113822)Raymond Hettinger2024-01-081-1/+1
* Misc minor improvements to the itertools recipes (gh-113477)Raymond Hettinger2023-12-251-81/+83
* gh-113202: Add a strict option to itertools.batched() (gh-113203)Raymond Hettinger2023-12-161-3/+15
* Add reshape() recipe to demonstrate a use case for batched() and chained.from...Raymond Hettinger2023-12-161-3/+24
* Optimize unique_justseen() recipe for a common case. (gh-113147)Raymond Hettinger2023-12-141-0/+2
* Remove itertool recipe with low pedagogical value (gh-113138)Raymond Hettinger2023-12-141-32/+32
* Add recipe for totient() to demonstrate unique_justseen() and factor(). (gh-1...Raymond Hettinger2023-12-141-0/+27
* Use match/case in grouper() recipe (gh-113059)Raymond Hettinger2023-12-131-8/+9
* Minor stylistic edit to the grouper recipe (gh112759)Jurjen N. E. Bos2023-12-051-2/+2
* Fix docstring and var name of itertools recipe (#112113)Sebastian Rittau2023-11-221-3/+3
* gh-111343: Fix `itertools` docs: `start` arg is optional for `count` (gh-111344)Nikita Sobolev2023-10-271-1/+1
* Remove outdated docstring from the `quantify` itertools recipe (#109726)Ɓukasz Langa2023-09-221-1/+0
* Misc itertool recipe improvements, mostly docstrings and comments (gh-109555)Raymond Hettinger2023-09-191-34/+42
* Fix iter_index() to work with lists which do not support stop=None. (gh-109306)Raymond Hettinger2023-09-121-0/+11
* Improve the sieve() recipe in the itertools docs (gh-109199)Raymond Hettinger2023-09-091-4/+7
* gh-107208: Fix iter_index() recipe to not swallow exceptions (gh-108835)Raymond Hettinger2023-09-031-12/+23
* Minor code clean-up for the factor() recipe (GH-108114)Raymond Hettinger2023-08-181-3/+1
* Add more recipe tests. Make the factor recipe a bit faster and clearer. (GH-1...Raymond Hettinger2023-07-171-3/+8
* Add more examples to the recipe docs (GH-106782)Raymond Hettinger2023-07-151-0/+2
* Small speed-up for the convolve() recipe. (GH-106371)Raymond Hettinger2023-07-031-2/+2
* sliding_window() recipe: Raise ValueError for non-positive window sizes. Ad...Raymond Hettinger2023-06-061-3/+27
* Misc improvements to the itertools docs (GH-104916)Raymond Hettinger2023-05-251-7/+24
* Update itertool recipe: polynomial_from_roots() (GH-103973)Raymond Hettinger2023-04-281-5/+4
* Itertool recipe improvements (GH-103399)Raymond Hettinger2023-04-091-137/+179
* Minor readability improvement to the factor() recipe (GH-102971)Raymond Hettinger2023-03-231-1/+1
* Tweak polynomial itertool recipes (GH-102880)Raymond Hettinger2023-03-211-14/+13
* gh-102876: remove superfluous parens from itertools.batched recipe (GH-102877)wim glenn2023-03-211-1/+1
* The pow() variant further improves accuracy (GH-102866)Raymond Hettinger2023-03-211-1/+1
* Remove itermediate list. Expand docstring. (GH-102862)Raymond Hettinger2023-03-211-4/+8
* Add itertool recipe for polynomial evaluation. (GH-102852)Raymond Hettinger2023-03-201-0/+40
* gh-102088 Optimize iter_index itertools recipe (GH-102360)Stefan Pochmann2023-03-021-3/+6
* gh-102105 Fix wording in filterfalse/quantify/filter (GH-102189)Stefan Pochmann2023-02-241-2/+2
* Add recipes to showcase tee(), zip*, batched, starmap, and product. (GH-101023)Raymond Hettinger2023-01-141-0/+27
* GH-100485: Add math.sumprod() (GH-100677)Raymond Hettinger2023-01-071-9/+2
* Improve comments in itertools uniquification recipes (GH-100631)Raymond Hettinger2022-12-311-7/+12
* Restore early-out to factor(). Strengthen tests. (GH-100591)Raymond Hettinger2022-12-281-5/+15
* Improve factor() recipe and fix its tests (GH-100576)Raymond Hettinger2022-12-281-20/+20
* Misc Itertools recipe tweaks (GH-100493)Raymond Hettinger2022-12-241-5/+49
* Add "strict" to dotproduct(). Add docstring. Factor-out common code. (GH-100480)Raymond Hettinger2022-12-231-2/+3
* Remove uninformative itertools recipe (GH-100253)Raymond Hettinger2022-12-151-7/+0
* GH-98363: Have batched() return tuples (GH-100118)Raymond Hettinger2022-12-081-9/+9
* Doc: Fix sphinx-lint issues (GH-98911)Julien Palard2022-10-311-1/+1
* Fix markup indentation (GH-98424)Raymond Hettinger2022-10-191-1/+1
* General improvements to the itertools docs (GH-98408)Raymond Hettinger2022-10-181-51/+92
* GH-98363: Add itertools.batched() (GH-98364)Raymond Hettinger2022-10-171-37/+39