Russell Keith-Magee wrote:
> http://code.djangoproject.com/ticket/3389/

That thing:

     Article.authors = [4,7]

is now done by

     Article.authors = [Author(id) for id in [4,7]]

I.e. Author(id) creates some strange incomplete object that can be 
nonetheless used for m2m relations since only an id is needed. Would 
this suffice?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" 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/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to