Opened 15 years ago

Closed 15 years ago

#11737 closed (worksforme)

many2many recursive relationship do not work in DJ 1.1

Reported by: simon_gray99 Owned by: nobody
Component: Uncategorized Version: 1.1
Severity: Keywords: many2many recursive
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Alex Gaynor)

from the page at:

http://docs.djangoproject.com/en/dev/ref/models/fields/#recursive-relationships

the sample code does not work:

>>> from django.db import models
>>> class Person(models.Model):
...     name = models.CharField(max_length=20)
...     friends = models.ManyToManyField('self')
...     idols = models.ManyToManyField('self', symmetrical=False, related_name='stalkers')
...     def __unicode__(self):
...         return self.name
... 
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/usr/lib/python2.5/site-packages/django/db/models/base.py", line 51, in __new__
    kwargs = {"app_label": model_module.__name__.split('.')[-2]}
IndexError: list index out of range
>>> 

Change History (2)

comment:1 by Alex Gaynor, 15 years ago

Description: modified (diff)

Please use the preview button.

comment:2 by Russell Keith-Magee, 15 years ago

Resolution: worksforme
Status: newclosed

I just tried this, and it works fine for me. There is also an extensive test suite of m2m relationships that covers this feature.

I don't doubt you have found a problem, but it's not as simple as "the sample code doesn't work". Feel free to reopen if you can provide more context or debugging assistance.

Note: See TracTickets for help on using tickets.
Back to Top