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:
parent
74d69af4e9
commit
027f2a378a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue