Re: [sqlalchemy] AssociationProxy's behavior with == None seems unintuitive

2013-06-08 Thread Michael Bayer
On Jun 8, 2013, at 1:33 AM, Greg Yang sorcerero...@gmail.com wrote: if __name__ == '__main__': engine = create_engine('sqlite:///:memory:') Session = sessionmaker(engine) session = Session() Base.metadata.create_all(engine) b1 = B() b2 = B() b3 = B()

Re: [sqlalchemy] AssociationProxy's behavior with == None seems unintuitive

2013-06-08 Thread Greg Yang
Awesome! The changes should be able to cover the issue. On Saturday, June 8, 2013 12:40:51 PM UTC-5, Michael Bayer wrote: On Jun 8, 2013, at 1:33 AM, Greg Yang sorcer...@gmail.com javascript: wrote: if __name__ == '__main__': engine = create_engine('sqlite:///:memory:')