From e642d11cb01700dbfcb4cceb9cc0d4b7b668f811 Mon Sep 17 00:00:00 2001 From: Erik Welch Date: Thu, 17 Apr 2014 10:31:22 -0400 Subject: [PATCH] TravisCI: test failed doctest. --- cytoolz/itertoolz.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cytoolz/itertoolz.pyx b/cytoolz/itertoolz.pyx index 2a5e7af..b8b6eef 100644 --- a/cytoolz/itertoolz.pyx +++ b/cytoolz/itertoolz.pyx @@ -38,7 +38,7 @@ cdef class remove: >>> def iseven(x): ... return x % 2 == 0 >>> list(remove(iseven, [1, 2, 3, 4])) - [1, 3] + [2, 3] """ def __cinit__(self, object predicate, object seq): self.predicate = predicate