Changeset 343
- Timestamp:
- 07/29/05 15:29:59 (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
r336 r343 66 66 <Article object> 67 67 68 # Model instances of the same type and same ID are considered equal. 69 >>> a = articles.get_object(pk=1) 70 >>> b = articles.get_object(pk=1) 71 >>> a == b 72 True 68 73 """
