Re: [Zope-dev] transaction support for ordering transactions.

2000-06-06 Thread Anthony Baxter
>>> "Phillip J. Eby" wrote > There is an error in your patch, however. _prepend should use > self._objects.insert(0,object), as the way you're doing it now will break > the _append method. (Because _append is a reference to _objects.append, > and you're replacing the old _objects with a new list

Re: [Zope-dev] transaction support for ordering transactions.

2000-06-06 Thread Phillip J. Eby
At 02:34 PM 6/6/00 +1000, Anthony Baxter wrote: > As part of making SQLSession transaction-sane, I'd like to be able >to specify that something can register itself to be committed or >aborted earlier in the list of objects rather than just being put on >the end of the list. The reason for this:

[Zope-dev] transaction support for ordering transactions.

2000-06-05 Thread Anthony Baxter
As part of making SQLSession transaction-sane, I'd like to be able to specify that something can register itself to be committed or aborted earlier in the list of objects rather than just being put on the end of the list. The reason for this: I want SQLSession to just use a normal DB connect