summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_itertools.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-09-23 07:27:39 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-09-23 07:27:39 (GMT)
commit4533f1fb7fbf1fa8a9cb264ff6f1f0aba043e80d (patch)
treed3a1460e3d46dc7ea42c6c0069a2d963949a4cff /Lib/test/test_itertools.py
parent513c8bd6f2523f5c6bf7e99996d65691c5e36013 (diff)
downloadcpython-4533f1fb7fbf1fa8a9cb264ff6f1f0aba043e80d.zip
cpython-4533f1fb7fbf1fa8a9cb264ff6f1f0aba043e80d.tar.gz
cpython-4533f1fb7fbf1fa8a9cb264ff6f1f0aba043e80d.tar.bz2
Improve three recipes in the itertools docs.
Diffstat (limited to 'Lib/test/test_itertools.py')
-rw-r--r--Lib/test/test_itertools.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py
index e4c29ad..6ce758a 100644
--- a/Lib/test/test_itertools.py
+++ b/Lib/test/test_itertools.py
@@ -746,15 +746,21 @@ Samuele
>>> def all(seq, pred=bool):
... "Returns True if pred(x) is True for every element in the iterable"
-... return False not in imap(pred, seq)
+... 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"
-... return True in imap(pred, seq)
+... 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"
-... return True not in imap(pred, seq)
+... 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"