mirror of
https://github.com/django/django.git
synced 2024-11-22 11:57:34 +01:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1546 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
027f2a378a
commit
65c1a9f1c9
@ -164,6 +164,10 @@ False
|
||||
True
|
||||
>>> a7 != a8
|
||||
True
|
||||
>>> articles.get_object(id__exact=8) != articles.get_object(id__exact=7)
|
||||
True
|
||||
>>> articles.get_object(id__exact=8) == articles.get_object(id__exact=7)
|
||||
False
|
||||
"""
|
||||
|
||||
from django.conf import settings
|
||||
|
Loading…
Reference in New Issue
Block a user