Commit 89df572c authored by Brian Rosner's avatar Brian Rosner
Browse files

Fixed #11274 -- Corrected doctests to not cause test failures due to missing...

Fixed #11274 -- Corrected doctests to not cause test failures due to missing newlines. Thanks Honza Kral.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10941 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 708bc80b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1151,6 +1151,7 @@ True
>>> qs = Author.objects.filter(pk__in=subq)
>>> list(qs)
[<Author: a1>, <Author: a2>]

# The subquery result cache should not be populated
>>> subq._result_cache is None
True
@@ -1159,6 +1160,7 @@ True
>>> qs = Author.objects.exclude(pk__in=subq)
>>> list(qs)
[<Author: a3>, <Author: a4>]

# The subquery result cache should not be populated
>>> subq._result_cache is None
True
@@ -1166,6 +1168,7 @@ True
>>> subq = Author.objects.filter(num__lt=3000)
>>> list(Author.objects.filter(Q(pk__in=subq) & Q(name='a1')))
[<Author: a1>]

# The subquery result cache should not be populated
>>> subq._result_cache is None
True