Added unit tests for #982, but they're passing for me on Python 2.4. Maybe the problem is Python 2.3? Refs #982

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1545 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-12-05 03:34:35 +00:00
parent 74d69af4e9
commit 027f2a378a
1 changed files with 6 additions and 0 deletions

View File

@ -158,6 +158,12 @@ datetime.datetime(2005, 7, 31, 12, 30, 45)
>>> a8.id
8L
>>> a7 == a8
False
>>> a8 == articles.get_object(id__exact=8)
True
>>> a7 != a8
True
"""
from django.conf import settings