ManyToMany relationship can't be saved

2013-11-21 Thread Adam Smith
As I was learning the Django Docs ( https://docs.djangoproject.com/en/1.6/topics/db/models/#extra-fields-on-many-to-many-relationships), I found the following code not working. Is it a bug? At least the result is unexpected. ringo = Person(name="Ringo") beatles = Group(name="Beatles") m1 = Memb

Re: Why not use @classmethod decorator consitently in django/utils/functional.py?

2013-11-20 Thread Adam Smith
You are right, I should have checked out those release notes. Thanks Baptiste! -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubscr..

Re: Why not use @classmethod decorator consitently in django/utils/functional.py?

2013-11-20 Thread Adam Smith
Hi Shai, Just FYI, on github @charettes merge my PR replacing almost all `meth = classmethod(meth)` with `@classmethod`. So I assume you guys are going to drop support for python2.4 and older, right? Best Regards Adam -- You received this message because you are subscribed to the Goo

Re: Why not use @classmethod decorator consitently in django/utils/functional.py?

2013-11-19 Thread Adam Smith
> > I see. Thanks a lot Shai, for both your welcome and detailed explanation! -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubsc

Why not use @classmethod decorator consitently in django/utils/functional.py?

2013-11-19 Thread Adam Smith
Hi, I'm quite new to Python and Django, as I read through the django/utils/functional.py, I was wondering why not use `classmethod` as a class method decorator consistently, as line 334