From 414bc24e81014239cc71f0b04e85622050068e9d Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 28 Jun 2006 11:37:17 +0000 Subject: Fixed #1754, #2211, #2192 -- allow date filtering comparisons to use strings as well as date objects. Fixed a couple of admin crashes as well. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3223 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/lookup/models.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests') diff --git a/tests/modeltests/lookup/models.py b/tests/modeltests/lookup/models.py index e0c4850ba2..a2c0a14158 100644 --- a/tests/modeltests/lookup/models.py +++ b/tests/modeltests/lookup/models.py @@ -58,6 +58,10 @@ Article 4 >>> Article.objects.filter(headline__startswith='Blah blah').count() 0L +# Date and date/time lookups can also be done with strings. +>>> Article.objects.filter(pub_date__exact='2005-07-27 00:00:00').count() +3L + # in_bulk() takes a list of IDs and returns a dictionary mapping IDs # to objects. >>> Article.objects.in_bulk([1, 2]) -- cgit v1.3