1
0
mirror of https://github.com/django/django.git synced 2025-07-07 03:09:22 +00:00

queryset-refactor: Added a test to show that #5261 is no longer a problem. Refs #5261.

git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6519 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-10-15 03:47:10 +00:00
parent a3b22d9db0
commit 44d51dae68

View File

@ -353,5 +353,9 @@ True
>>> ExtraInfo.objects.values('note')
[{'note': 1}, {'note': 2}]
# Bug 5261
>>> Note.objects.exclude(Q())
[<Note: n1>, <Note: n2>, <Note: n3>]
"""}