From 027f2a378a836d828347f3d295cae4f83a9cad71 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 5 Dec 2005 03:34:35 +0000 Subject: [PATCH] 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 --- tests/testapp/models/basic.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/testapp/models/basic.py b/tests/testapp/models/basic.py index 749d84ec44..c3a45ba5bd 100644 --- a/tests/testapp/models/basic.py +++ b/tests/testapp/models/basic.py @@ -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