Skip to content

Commit 9597003

Browse files
committed
Remove unnecessary documentaion on predicates.
1 parent 939ac13 commit 9597003

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

iters/iters.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3141,8 +3141,6 @@ def partition(self, predicate: OptionalPredicate[T]) -> Pair[Iter[T]]:
31413141
"""Partitions the iterator into two iterators *safely* based on the given `predicate`,
31423142
loading **all** items into memory!
31433143
3144-
See [predicates](/predicates) for more information on the `predicate` argument.
3145-
31463144
Example:
31473145
Suppose we have the following function:
31483146
@@ -3178,9 +3176,6 @@ def is_positive(z: int) -> bool:
31783176

31793177
def partition_unsafe(self, predicate: OptionalPredicate[T]) -> Pair[Iter[T]]:
31803178
"""Partitions the iterator into two iterators *unsafely* based on the given `predicate`.
3181-
3182-
See [predicates](/predicates) for more information on the `predicate` argument.
3183-
31843179
Example:
31853180
Suppose we have the following function:
31863181

0 commit comments

Comments
 (0)