Changeset 2463
- Timestamp:
- 03/01/06 22:20:22 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/tests/modeltests/transactions/models.py
r2457 r2463 4 4 Django handles transactions in three different ways. The default is to commit 5 5 each transaction upon a write, but you can decorate a function to get 6 commit-on-sucess behavior, or else you can manage the transaction manually. 6 commit-on-success behavior. Alternatively, you can manage the transaction 7 manually. 7 8 """ 8 9
