index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Doc
/
library
/
itertools.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
Misc improvements to the itertools docs (gh-125147)
Raymond Hettinger
2024-10-08
1
-39/+97
*
Itertool docs: Minor clarifications, wording tweaks, spacing, and active voic...
Raymond Hettinger
2024-09-27
1
-13/+21
*
gh-123884 Tee of tee was not producing n independent iterators (gh-124490)
Raymond Hettinger
2024-09-25
1
-19/+30
*
Small improvements to the itertools docs (GH-123885)
Raymond Hettinger
2024-09-10
1
-1/+15
*
gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...
Serhiy Storchaka
2024-07-19
1
-1/+1
*
itertools doc: examples for groupby() and tee() (#120618)
Frank Dana
2024-06-17
1
-2/+2
*
Add unique() recipe to itertools docs (gh-119911)
Raymond Hettinger
2024-06-01
1
-2/+14
*
Misc cleanups and wording improvements for the itertools docs (gh-119626)
Raymond Hettinger
2024-05-27
1
-122/+116
*
Misc improvement to the docs for itertools (gh-119529)
Raymond Hettinger
2024-05-24
1
-55/+55
*
Minor improvements to the docs for itertools.tee() (gh-119135)
Raymond Hettinger
2024-05-18
1
-10/+11
*
Misc improvements to the itertools docs (gh-119040)
Raymond Hettinger
2024-05-14
1
-35/+26
*
Itertools docs: fix parameter names and indentation in Python equivalents (gh...
pochmann3
2024-05-12
1
-5/+5
*
docs: module page titles should not start with a link to themselves (#117099)
Ned Batchelder
2024-05-08
1
-2/+2
*
gh-118476: Fix corner cases in islice() rough equivalent. (Gh-118559)
Raymond Hettinger
2024-05-05
1
-18/+11
*
Minor improvements to the itertools recipes (#118563)
Raymond Hettinger
2024-05-03
1
-24/+12
*
Docs: add link roles with Sphinx extlinks (#117850)
Hugo van Kemenade
2024-04-15
1
-1/+1
*
gh-116842: Improve test comment and fix a doctest (gh-116846)
Raymond Hettinger
2024-03-15
1
-2/+2
*
Minor improvements to the itertools documentation (gh-116833)
Raymond Hettinger
2024-03-14
1
-84/+94
*
Better presentation order for recipes. (gh-116755)
Raymond Hettinger
2024-03-13
1
-43/+43
*
Modernize roundrobin() recipe and improve variable names (gh-116710)
Raymond Hettinger
2024-03-13
1
-17/+14
*
Minor clarity improvement for the iter_index() recipe. Also add value subsequ...
Raymond Hettinger
2024-03-13
1
-4/+21
*
Beef-up tests for the itertool docs. (gh-116679)
Raymond Hettinger
2024-03-12
1
-9/+103
*
Consistently spell out *predicate* instead of *pred*. (gh-116308)
Raymond Hettinger
2024-03-04
1
-23/+16
*
Make the iter_except() recipe more compact. (gh-116132)
Raymond Hettinger
2024-02-29
1
-20/+1
*
Update an out-of-date example in the itertools recipe intro (gh-116082)
Raymond Hettinger
2024-02-28
1
-1/+1
*
Improve all_equal() recipe (gh-116081)
Raymond Hettinger
2024-02-28
1
-3/+4
*
gh-113479: Link to workaround for subtle issue with takewhile() (gh-115890)
Raymond Hettinger
2024-02-25
1
-33/+41
*
Minor algebraic simplification for the totient() recipe (gh-113822)
Raymond Hettinger
2024-01-08
1
-1/+1
*
Misc minor improvements to the itertools recipes (gh-113477)
Raymond Hettinger
2023-12-25
1
-81/+83
*
gh-113202: Add a strict option to itertools.batched() (gh-113203)
Raymond Hettinger
2023-12-16
1
-3/+15
*
Add reshape() recipe to demonstrate a use case for batched() and chained.from...
Raymond Hettinger
2023-12-16
1
-3/+24
*
Optimize unique_justseen() recipe for a common case. (gh-113147)
Raymond Hettinger
2023-12-14
1
-0/+2
*
Remove itertool recipe with low pedagogical value (gh-113138)
Raymond Hettinger
2023-12-14
1
-32/+32
*
Add recipe for totient() to demonstrate unique_justseen() and factor(). (gh-1...
Raymond Hettinger
2023-12-14
1
-0/+27
*
Use match/case in grouper() recipe (gh-113059)
Raymond Hettinger
2023-12-13
1
-8/+9
*
Minor stylistic edit to the grouper recipe (gh112759)
Jurjen N. E. Bos
2023-12-05
1
-2/+2
*
Fix docstring and var name of itertools recipe (#112113)
Sebastian Rittau
2023-11-22
1
-3/+3
*
gh-111343: Fix `itertools` docs: `start` arg is optional for `count` (gh-111344)
Nikita Sobolev
2023-10-27
1
-1/+1
*
Remove outdated docstring from the `quantify` itertools recipe (#109726)
Ćukasz Langa
2023-09-22
1
-1/+0
*
Misc itertool recipe improvements, mostly docstrings and comments (gh-109555)
Raymond Hettinger
2023-09-19
1
-34/+42
*
Fix iter_index() to work with lists which do not support stop=None. (gh-109306)
Raymond Hettinger
2023-09-12
1
-0/+11
*
Improve the sieve() recipe in the itertools docs (gh-109199)
Raymond Hettinger
2023-09-09
1
-4/+7
*
gh-107208: Fix iter_index() recipe to not swallow exceptions (gh-108835)
Raymond Hettinger
2023-09-03
1
-12/+23
*
Minor code clean-up for the factor() recipe (GH-108114)
Raymond Hettinger
2023-08-18
1
-3/+1
*
Add more recipe tests. Make the factor recipe a bit faster and clearer. (GH-1...
Raymond Hettinger
2023-07-17
1
-3/+8
*
Add more examples to the recipe docs (GH-106782)
Raymond Hettinger
2023-07-15
1
-0/+2
*
Small speed-up for the convolve() recipe. (GH-106371)
Raymond Hettinger
2023-07-03
1
-2/+2
*
sliding_window() recipe: Raise ValueError for non-positive window sizes. Ad...
Raymond Hettinger
2023-06-06
1
-3/+27
*
Misc improvements to the itertools docs (GH-104916)
Raymond Hettinger
2023-05-25
1
-7/+24
*
Update itertool recipe: polynomial_from_roots() (GH-103973)
Raymond Hettinger
2023-04-28
1
-5/+4
[next]