[sqlalchemy] Re: Merging and PGArray

2009-06-12 Thread Roel van Os
return impl.get_collection(self, dict_, x, passive=passive) > -elif isinstance(x, list): > -return x > +#elif isinstance(x, list): > +#return x > else: > return [x] > > > > > Roel van Os wrote: >

[sqlalchemy] Merging and PGArray

2009-06-12 Thread Roel van Os
placed an example below. dont_load True or False doesn't make a difference. I've tested with SQLAlchemy 0.5.4 and 0.4.6. Any idea what the problem might be and what I can do about it? Thanks, Roel van Os Example code: #!/usr/bin/env python from sqlalchemy import * from sqlalche