Changeset 7802
- Timestamp:
- 06/30/08 06:56:52 (2 months ago)
- Files:
-
- django/trunk/django/db/transaction.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/transaction.py
r7558 r7802 197 197 try: 198 198 res = func(*args, **kw) 199 except Exception, e: 199 except (Exception, KeyboardInterrupt, SystemExit): 200 # (We handle KeyboardInterrupt and SystemExit specially, since 201 # they don't inherit from Exception in Python 2.5, but we 202 # should treat them uniformly here.) 200 203 if is_dirty(): 201 204 rollback()
