Kaydet (Commit) 027f2a37 authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Added unit tests for #982, but they're passing for me on Python 2.4. Maybe the…

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
üst 74d69af4
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment