I am noticing this behaviour (which I think is a bug):

class A(PolyModel):
    pass

class B(B):
    a = ReferenceProperty(A, collection_name='b')

class C(A):
    a = ReferenceProperty(A, collection_name='c')

a = A()
a.put()

b = B()
b.a = a
b.put()

c = C()
c.a = a
c.put()

Now, a.b returns b and c, and a.c returns b and c as well. Is this the
expected behaviour? I very much suspect this is a bug.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to