Changeset 7836 for django/branches/gis/django/db/transaction.py
- Timestamp:
- 07/04/08 15:16:22 (6 months ago)
- Files:
-
- django/branches/gis (modified) (1 prop)
- django/branches/gis/django/db/transaction.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis
- Property svnmerge-integrated changed from /django/trunk:1-7767 to /django/trunk:1-7835
django/branches/gis/django/db/transaction.py
r7573 r7836 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()
