Opened 16 years ago

Closed 13 years ago

#7874 closed New feature (fixed)

Transactions should support the context handler interface

Reported by: Kenneth Arnold Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Normal Keywords:
Cc: kenneth.arnold@… Triage Stage: Design decision needed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

(Low-priority, post-1.0)

Python 2.5 (really 2.6) introduces a with statement (http://www.python.org/dev/peps/pep-0343/).

It would be nice for transactions to support that, so a casual transaction use doesn't require creating a "dummy" function just to wrap it with a decorator.

This can be done entirely backwards-compatibly by adding __enter__ and __exit__ functions.

Change History (5)

comment:1 by Michael Radziej, 16 years ago

Triage Stage: UnreviewedDesign decision needed

This is going to need a discussion, but certainly not before the 1.0 release. If you want, could you please post a message to django-developers some time after the 1.0 release?

comment:2 by Kenneth Arnold, 16 years ago

Cc: kenneth.arnold@… added

comment:3 by (none), 15 years ago

milestone: post-1.0

Milestone post-1.0 deleted

comment:4 by Luke Plant, 13 years ago

Severity: Normal
Type: New feature

comment:5 by anonymous, 13 years ago

Easy pickings: unset
Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top