diff options
author | Raymond Hettinger <python@rcn.com> | 2005-03-11 22:17:30 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-03-11 22:17:30 (GMT) |
commit | f77d0334f30e331f005090723cd1d2955959a8cd (patch) | |
tree | 07d272ed0ae008b7f99def61dc05aa45327ae44b | |
parent | 96229b191814556622b575fd320e822f918f355a (diff) | |
download | cpython-f77d0334f30e331f005090723cd1d2955959a8cd.zip cpython-f77d0334f30e331f005090723cd1d2955959a8cd.tar.gz cpython-f77d0334f30e331f005090723cd1d2955959a8cd.tar.bz2 |
Revised the itertools quantifier recipes to match the performance of the
new builtins.
-rw-r--r-- | Doc/lib/libitertools.tex | 16 | ||||
-rw-r--r-- | Lib/test/test_itertools.py | 16 |
2 files changed, 16 insertions, 16 deletions
diff --git a/Doc/lib/libitertools.tex b/Doc/lib/libitertools.tex index fbde69d..780ed55 100644 --- a/Doc/lib/libitertools.tex +++ b/Doc/lib/libitertools.tex @@ -461,26 +461,26 @@ def nth(iterable, n): "Returns the nth item" return list(islice(iterable, n, n+1)) -def all(seq, pred=bool): - "Returns True if pred(x) is True for every element in the iterable" +def all(seq, pred=None): + "Returns True if pred(x) is true for every element in the iterable" for elem in ifilterfalse(pred, seq): return False return True -def any(seq, pred=bool): - "Returns True if pred(x) is True for at least one element in the iterable" +def any(seq, pred=None): + "Returns True if pred(x) is true for at least one element in the iterable" for elem in ifilter(pred, seq): return True return False -def no(seq, pred=bool): - "Returns True if pred(x) is False for every element in the iterable" +def no(seq, pred=None): + "Returns True if pred(x) is false for every element in the iterable" for elem in ifilter(pred, seq): return False return True -def quantify(seq, pred=bool): - "Count how many times the predicate is True in the sequence" +def quantify(seq, pred=None): + "Count how many times the predicate is true in the sequence" return sum(imap(pred, seq)) def padnone(seq): diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index becb3b2..577082b 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -799,26 +799,26 @@ Samuele ... "Returns the nth item" ... return list(islice(iterable, n, n+1)) ->>> def all(seq, pred=bool): -... "Returns True if pred(x) is True for every element in the iterable" +>>> def all(seq, pred=None): +... "Returns True if pred(x) is true for every element in the iterable" ... for elem in ifilterfalse(pred, seq): ... return False ... return True ->>> def any(seq, pred=bool): -... "Returns True if pred(x) is True for at least one element in the iterable" +>>> def any(seq, pred=None): +... "Returns True if pred(x) is true for at least one element in the iterable" ... for elem in ifilter(pred, seq): ... return True ... return False ->>> def no(seq, pred=bool): -... "Returns True if pred(x) is False for every element in the iterable" +>>> def no(seq, pred=None): +... "Returns True if pred(x) is false for every element in the iterable" ... for elem in ifilter(pred, seq): ... return False ... return True ->>> def quantify(seq, pred=bool): -... "Count how many times the predicate is True in the sequence" +>>> def quantify(seq, pred=None): +... "Count how many times the predicate is true in the sequence" ... return sum(imap(pred, seq)) >>> def padnone(seq): |