I've inherited django.contrib.auth.User model

class MyUser(User):
        friends = models.ManyToManyField("self", symmetrical = False,
related_name = 'f_set')
        objects = UserManager()
        class Admin:
                pass

Other fields were removed for simplicity.

Now I run shell and:
u1 = MyUser.objects.create_user(username='test1',
email='[EMAIL PROTECTED]', password='test')
u2 = MyUser.objects.create_user(username='test2',
email='[EMAIL PROTECTED]', password='test')

u1.friends.add(u2)

u1.friends.all()
RESULT(!):
[<MyUser: test1>]
u1.f_set.all()
[]

u2.f_set.all()
[<MyUser: test2>]



So, I guess it's a bug. If you add a u3 and add it to the friends of
u1:
u1.friends.all()
[<MyUser: test1>, <MyUser: test1>]


Maybe I'm wrong, please, any comments are appreciated.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to