Changeset 1546
- Timestamp:
- 12/04/05 21:37:23 (3 years ago)
- Files:
-
- django/trunk/tests/testapp/models/basic.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/testapp/models/basic.py
r1545 r1546 165 165 >>> a7 != a8 166 166 True 167 >>> articles.get_object(id__exact=8) != articles.get_object(id__exact=7) 168 True 169 >>> articles.get_object(id__exact=8) == articles.get_object(id__exact=7) 170 False 167 171 """ 168 172
