Commit 86c5c015 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed a mistake in function documentation 'django.utils.functional.partition'

Thanks Raman Barkholenka for the patch.
parent 9ea4dc90
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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: