From 86c5c0154f69728eba4aad6204621f07cdd3459d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 4 Aug 2012 18:56:43 -0400 Subject: [PATCH] Fixed a mistake in function documentation 'django.utils.functional.partition' Thanks Raman Barkholenka for the patch. --- django/utils/functional.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/utils/functional.py b/django/utils/functional.py index 2dca182b992..69aae098876 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: