summaryrefslogtreecommitdiffstats
path: root/Doc/library/itertools.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.12] Tee of tee was not producing n independent iterators (gh-123884) (gh-1...Raymond Hettinger2024-10-081-18/+31
* [3.12] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-191-1/+1
* [3.12] Add unique() recipe to itertools docs (gh-119911) (gh-119917)Miss Islington (bot)2024-06-011-2/+14
* [3.12] Misc cleanups and wording improvements for the itertools docs (gh-119631)Raymond Hettinger2024-05-271-122/+116
* [3.12] Misc improvements to the docs for itertools (gh-119532)Raymond Hettinger2024-05-241-55/+55
* [3.12] Minor improvements to the docs for itertools.tee() (gh-119135) (gh-119...Miss Islington (bot)2024-05-181-10/+11
* [3.12] Misc improvements to the itertools docs (gh-119040) (#119044)Miss Islington (bot)2024-05-141-35/+26
* [3.12] Itertools docs: fix parameter names and indentation in Python equivale...Miss Islington (bot)2024-05-141-5/+5
* [3.12] docs: module page titles should not start with a link to themselves (G...Miss Islington (bot)2024-05-081-2/+2
* [3.12] gh-118476: Fix corner cases in islice() rough equivalent. (Gh-118559) ...Miss Islington (bot)2024-05-051-18/+11
* [3.12] Minor improvements to the itertools recipes (GH-118563) (#118565)Miss Islington (bot)2024-05-031-24/+12
* [3.12] Docs: add link roles with Sphinx extlinks (GH-117850) (#117910)Hugo van Kemenade2024-04-151-1/+1
* [3.12] gh-116842: Improve test comment and fix a doctest (gh-116846) (gh-116847)Miss Islington (bot)2024-03-151-2/+2
* [3.12] Minor improvements to the itertools documentation (gh-116833) (gh-116838)Raymond Hettinger2024-03-151-84/+94
* [3.12] Better presentation order for recipes. (gh-116755) (gh-116757)Miss Islington (bot)2024-03-131-43/+43
* [3.12] Modernize roundrobin() recipe and improve variable names (gh-116710) (...Miss Islington (bot)2024-03-131-17/+14
* [3.12] Minor clarity improvement for the iter_index() recipe. Also add value ...Miss Islington (bot)2024-03-131-4/+21
* [3.12] Beef-up tests for the itertool docs. (gh-116679) (gh-116688)Miss Islington (bot)2024-03-121-9/+103
* [3.12] Consistently spell out *predicate* instead of *pred*. (gh-116308) (gh-...Miss Islington (bot)2024-03-041-23/+16
* [3.12] Make the iter_except() recipe more compact. (gh-116132) (gh0116133)Miss Islington (bot)2024-02-291-20/+1
* [3.12] Update an out-of-date example in the itertools recipe intro (gh-116082...Miss Islington (bot)2024-02-281-1/+1
* [3.12] Improve all_equal() recipe (gh-116081) (gh-116083)Miss Islington (bot)2024-02-281-3/+4
* [3.12] gh-113479: Link to workaround for subtle issue with takewhile() (gh-11...Miss Islington (bot)2024-02-251-33/+41
* [3.12] Minor algebraic simplification for the totient() recipe (gh-113822) (g...Miss Islington (bot)2024-01-081-1/+1
* [3.12] Misc minor improvements to the itertools recipes (gh-113477) (gh-113478)Miss Islington (bot)2023-12-251-81/+83
* [3.12] Add reshape() recipe to demonstrate a use case for batched() and chain...Miss Islington (bot)2023-12-161-3/+24
* [3.12] Use match/case in grouper() recipe (gh-113059) (gh-113197)Miss Islington (bot)2023-12-151-8/+9
* [3.12] Minor stylistic edit to the grouper recipe (gh-112759) (gh-113196)Miss Islington (bot)2023-12-151-2/+2
* [3.12] Optimize unique_justseen() recipe for a common case. (gh-113147) (gh-1...Miss Islington (bot)2023-12-141-0/+2
* [3.12] Remove itertool recipe with low pedagogical value (gh-113138) (gh-113140)Miss Islington (bot)2023-12-141-32/+32
* [3.12] Add recipe for totient() to demonstrate unique_justseen() and factor()...Miss Islington (bot)2023-12-141-0/+27
* [3.12] Fix docstring and var name of itertools recipe (GH-112113) (#112310)Miss Islington (bot)2023-11-221-3/+3
* [3.12] gh-111343: Fix `itertools` docs: `start` arg is optional for `count` (...Miss Islington (bot)2023-10-271-1/+1
* [3.12] Sync factor() recipe with main branch (gh-110231)Raymond Hettinger2023-10-021-3/+1
* [3.12] Misc itertool recipe improvements, mostly docstrings and comments (gh-...Miss Islington (bot)2023-09-221-37/+44
* [3.12] Fix iter_index() to work with lists which do not support stop=None. (g...Miss Islington (bot)2023-09-121-0/+11
* [3.12] Improve the sieve() recipe in the itertools docs (gh-109199) (#109203)Miss Islington (bot)2023-09-121-4/+7
* [3.12] gh-107208: Fix iter_index() recipe to not swallow exceptions (gh-10883...Miss Islington (bot)2023-09-041-12/+23
* [3.12] Add more recipe tests. Make the factor recipe a bit faster and clearer...Miss Islington (bot)2023-07-171-3/+8
* [3.12] Add more examples to the recipe docs (GH-106782) (GH-106783)Miss Islington (bot)2023-07-151-0/+2
* [3.12] Small speed-up for the convolve() recipe. (GH-106371) (GH-106375)Miss Islington (bot)2023-07-031-2/+2
* [3.12] sliding_window() recipe: Raise ValueError for non-positive window siz...Miss Islington (bot)2023-06-061-3/+27
* [3.12] Misc improvements to the itertools docs (GH-104916) (GH-104917)Miss Islington (bot)2023-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