[sqlalchemy] Unexpected behavior of is_modified()

2010-09-27 Thread Ted Turocy
Hello, I am puzzled by some behavior of is_modified() I am seeing. Here is a sample program which illustrates the situation. I'm running this on 0.6.4: - import sqlalchemy import sqlalchemy.orm from sqlalchemy import Table, Column, Integer class Spam(object): def __init__(self, cans):

Re: [sqlalchemy] Unexpected behavior of is_modified()

2010-09-27 Thread Michael Bayer
On Sep 27, 2010, at 6:15 PM, Ted Turocy wrote: Hello, I am puzzled by some behavior of is_modified() I am seeing. Here is a sample program which illustrates the situation. I'm running this on 0.6.4: This is a limitation of is_modified(), and it is definitely a bug here that this

Re: [sqlalchemy] Unexpected behavior of is_modified()

2010-09-27 Thread Michael Bayer
On Sep 27, 2010, at 6:53 PM, Michael Bayer wrote: On Sep 27, 2010, at 6:15 PM, Ted Turocy wrote: Hello, I am puzzled by some behavior of is_modified() I am seeing. Here is a sample program which illustrates the situation. I'm running this on 0.6.4: This is a limitation of