diff --git a/django/utils/functional.py b/django/utils/functional.py index 2dca182b99..69aae09887 100644 --- a/django/utils/functional.py +++ b/django/utils/functional.py @@ -312,8 +312,8 @@ def partition(predicate, values): Splits the values into two sets, based on the return value of the function (True/False). e.g.: - >>> partition(lambda: x > 3, range(5)) - [1, 2, 3], [4] + >>> partition(lambda x: x > 3, range(5)) + [0, 1, 2, 3], [4] """ results = ([], []) for item in values: