Changeset 445
- Timestamp:
- 08/09/05 17:56:43 (3 years ago)
- Files:
-
- django/trunk/tests/testapp/models/many_to_many.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/testapp/models/many_to_many.py
r444 r445 70 70 [Django lets you build Web apps easily, NASA uses Python] 71 71 72 # If we delete an article, its publication won't be able to access it. 73 >>> a2.delete() 74 >>> articles.get_list() 75 [Django lets you build Web apps easily] 76 >>> p1.get_article_list(order_by=['headline']) 77 [Django lets you build Web apps easily] 78 72 79 """
