[sqlalchemy] before_insert for MapperExtension

2010-10-15 Thread Kent
Suppose I have a collection of new objects in a one to many relationship list. (A plain python list is instrumented for the collection) Am I guaranteed that the objects' MapperExtension's before_insert() method will be invoked in the same order as the items in the collection? Thanks, Kent --

Re: [sqlalchemy] before_insert for MapperExtension

2010-10-15 Thread Michael Bayer
On Oct 15, 2010, at 9:36 AM, Kent wrote: Suppose I have a collection of new objects in a one to many relationship list. (A plain python list is instrumented for the collection) Am I guaranteed that the objects' MapperExtension's before_insert() method will be invoked in the same order as