[sqlalchemy] possible bug/docs deficiency on classes with multiple identical relationships

2015-09-16 Thread Jonathan Vanasco
This drove me crazy for an hour today, until I finally figured out what was going on. I have a class with a few relationships: class Foo(base): # relationships have a prefix that describe the relation l_ (list) or o_ (scalar) l_Bars = relationship("Bars")

Re: [sqlalchemy] possible bug/docs deficiency on classes with multiple identical relationships

2015-09-16 Thread Jonathan Vanasco
On Wednesday, September 16, 2015 at 6:56:20 PM UTC-4, Michael Bayer wrote: > > OK, what's great here is (in keeping with bugs are always reported in > twos, no matter how long theyve been around) that someone just hit this > yesterday: > Ha! I missed reading that one! this should

Re: [sqlalchemy] possible bug/docs deficiency on classes with multiple identical relationships

2015-09-16 Thread Mike Bayer
On 9/16/15 5:49 PM, Jonathan Vanasco wrote: This drove me crazy for an hour today, until I finally figured out what was going on. I have a class with a few relationships: class Foo(base): # relationships have a prefix that describe the relation l_ (list) or o_ (scalar)