Re: [sqlalchemy] Question about behavior of get_history for CompositeProperty

2017-02-07 Thread mike bayer
Hi there - Can't reproduce. Below is a complete test case, please modify it to illustrate how you are getting this result. from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class

[sqlalchemy] Question about behavior of get_history for CompositeProperty

2017-02-07 Thread Samer Atiani
Hello All, Assume you have a CompositeProperty that depends on two properties, 'property_1' and 'property_2' and assume the constructor method for this property class does something like this: class ExampleCompositeProperty(object): def __init__(self, property_1, property_2): if property_1 is