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
*
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
*
Itertool recipe improvements (GH-103399)
Raymond Hettinger
2023-04-09
1
-137/+179
*
Minor readability improvement to the factor() recipe (GH-102971)
Raymond Hettinger
2023-03-23
1
-1/+1
*
Tweak polynomial itertool recipes (GH-102880)
Raymond Hettinger
2023-03-21
1
-14/+13
*
gh-102876: remove superfluous parens from itertools.batched recipe (GH-102877)
wim glenn
2023-03-21
1
-1/+1
*
The pow() variant further improves accuracy (GH-102866)
Raymond Hettinger
2023-03-21
1
-1/+1
*
Remove itermediate list. Expand docstring. (GH-102862)
Raymond Hettinger
2023-03-21
1
-4/+8
*
Add itertool recipe for polynomial evaluation. (GH-102852)
Raymond Hettinger
2023-03-20
1
-0/+40
*
gh-102088 Optimize iter_index itertools recipe (GH-102360)
Stefan Pochmann
2023-03-02
1
-3/+6
*
gh-102105 Fix wording in filterfalse/quantify/filter (GH-102189)
Stefan Pochmann
2023-02-24
1
-2/+2
*
Add recipes to showcase tee(), zip*, batched, starmap, and product. (GH-101023)
Raymond Hettinger
2023-01-14
1
-0/+27
*
GH-100485: Add math.sumprod() (GH-100677)
Raymond Hettinger
2023-01-07
1
-9/+2
*
Improve comments in itertools uniquification recipes (GH-100631)
Raymond Hettinger
2022-12-31
1
-7/+12
*
Restore early-out to factor(). Strengthen tests. (GH-100591)
Raymond Hettinger
2022-12-28
1
-5/+15
*
Improve factor() recipe and fix its tests (GH-100576)
Raymond Hettinger
2022-12-28
1
-20/+20
*
Misc Itertools recipe tweaks (GH-100493)
Raymond Hettinger
2022-12-24
1
-5/+49
*
Add "strict" to dotproduct(). Add docstring. Factor-out common code. (GH-100480)
Raymond Hettinger
2022-12-23
1
-2/+3
*
Remove uninformative itertools recipe (GH-100253)
Raymond Hettinger
2022-12-15
1
-7/+0
*
GH-98363: Have batched() return tuples (GH-100118)
Raymond Hettinger
2022-12-08
1
-9/+9
*
Doc: Fix sphinx-lint issues (GH-98911)
Julien Palard
2022-10-31
1
-1/+1
*
Fix markup indentation (GH-98424)
Raymond Hettinger
2022-10-19
1
-1/+1
*
General improvements to the itertools docs (GH-98408)
Raymond Hettinger
2022-10-18
1
-51/+92
*
GH-98363: Add itertools.batched() (GH-98364)
Raymond Hettinger
2022-10-17
1
-37/+39
*
Move random selection recipes from itertools.rst to random.rst (GH-98369)
Raymond Hettinger
2022-10-17
1
-25/+0
*
Improve speed. Reduce auxiliary memory to 16.6% of the main array. (GH-98294)
Raymond Hettinger
2022-10-15
1
-4/+5
*
Faster sieve() recipe (#98287)
Raymond Hettinger
2022-10-15
1
-8/+27
*
Misc updates to the itertools recipes and tests (GH-98018)
Raymond Hettinger
2022-10-07
1
-6/+40
*
Simplify sieve() recipe. Add edge case tests. (GH-96892)
Raymond Hettinger
2022-09-17
1
-1/+7
*
Itertools sieve() recipe (#96813)
Raymond Hettinger
2022-09-14
1
-6/+28
*
Add polynomial_from_roots() to the itertools recipes (#96102)
Raymond Hettinger
2022-08-21
1
-0/+19
*
gh-96039: Corrected wording error in itertools doc (GH-96105)
MrSuspicious
2022-08-19
1
-1/+1
*
Take advantage of math.comb() in the nth_combination() recipe (#93027)
Raymond Hettinger
2022-05-20
1
-6/+2
*
bpo-22295: use python -m pip rather than plain pip in more examples (GH-24003)
Ville Skyttä
2022-04-09
1
-1/+1
*
Add recipe for subslices (GH-31028)
Raymond Hettinger
2022-02-02
1
-0/+9
*
Move doctests to the main docs. Eliminate duplication. Improve coverage. (GH-...
Raymond Hettinger
2022-01-25
1
-0/+238
*
Improve grouper() recipe to demonstrate all forms of zip() (GH-30837)
Raymond Hettinger
2022-01-23
1
-3/+12
*
Docs: Clarify the before_and_after() example (GH-28458)
Raymond Hettinger
2021-09-20
1
-3/+4
*
Fix typo and add a module prefix (GH-28401)
Raymond Hettinger
2021-09-17
1
-2/+2
*
Add more itertool recipes (GH-28165)
Raymond Hettinger
2021-09-07
1
-2/+20
*
bpo-44571: Add itertool recipe for a variant of takewhile() (GH-28167)
Raymond Hettinger
2021-09-05
1
-1/+28
*
Minor improvements to the convolve() recipe (GH-24012)
Raymond Hettinger
2020-12-30
1
-2/+2
*
Add convolve() to the itertools recipes (GH-23928)
Raymond Hettinger
2020-12-26
1
-0/+12
*
bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823)
Zackery Spytz
2020-12-17
1
-1/+1
*
bpo-38200: Add itertools.pairwise() (GH-23549)
Raymond Hettinger
2020-12-01
1
-6/+17
*
bpo-42450: Minor updates to the itertools recipes (GH-23555)
Raymond Hettinger
2020-11-29
1
-5/+5
[next]