diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-24 02:34:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-24 02:34:53 (GMT) |
commit | 35e8c4653455ceeac5b49b369b4c11be6096ea17 (patch) | |
tree | 56520e401f31f82834da704af56430a70683bac8 /Doc/library/itertools.rst | |
parent | 3513358e11df32cc02047e48a9a9a976343ba16c (diff) | |
download | cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.zip cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.gz cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.bz2 |
remove some old versionchanged and versionadded directives
Diffstat (limited to 'Doc/library/itertools.rst')
-rw-r--r-- | Doc/library/itertools.rst | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index c9d4c60b..63cace6 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -91,8 +91,6 @@ loops that truncate the stream. for element in it: yield element - .. versionadded:: 2.6 - .. function:: combinations(iterable, r) @@ -137,7 +135,6 @@ loops that truncate the stream. if sorted(indices) == list(indices): yield tuple(pool[i] for i in indices) - .. versionadded:: 2.6 .. function:: count([n]) @@ -363,7 +360,6 @@ loops that truncate the stream. if len(set(indices)) == r: yield tuple(pool[i] for i in indices) - .. versionadded:: 2.6 .. function:: product(*iterables[, repeat]) @@ -425,10 +421,6 @@ loops that truncate the stream. for args in iterable: yield function(*args) - .. versionchanged:: 2.6 - Previously, :func:`starmap` required the function arguments to be tuples. - Now, any iterable is allowed. - .. function:: takewhile(predicate, iterable) |