Changeset 3223
- Timestamp:
- 06/28/06 06:37:17 (2 years ago)
- Files:
-
- django/trunk/django/db/models/fields/__init__.py (modified) (1 diff)
- django/trunk/tests/modeltests/lookup/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/models/fields/__init__.py
r3183 r3223 412 412 if lookup_type == 'range': 413 413 value = [str(v) for v in value] 414 elif lookup_type in ('exact', 'gt', 'gte', 'lt', 'lte', 'ne') :414 elif lookup_type in ('exact', 'gt', 'gte', 'lt', 'lte', 'ne') and hasattr(value, 'strftime'): 415 415 value = value.strftime('%Y-%m-%d') 416 416 else: django/trunk/tests/modeltests/lookup/models.py
r3170 r3223 58 58 >>> Article.objects.filter(headline__startswith='Blah blah').count() 59 59 0L 60 61 # Date and date/time lookups can also be done with strings. 62 >>> Article.objects.filter(pub_date__exact='2005-07-27 00:00:00').count() 63 3L 60 64 61 65 # in_bulk() takes a list of IDs and returns a dictionary mapping IDs
