Changes between Initial Version and Version 1 of Ticket #29440
- Timestamp:
- May 25, 2018, 4:40:47 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29440 – Description
initial v1 1 1 Since Django 2.0, trying to pass bulk=True to a many-to-many RelatedManager results in an error: 2 2 3 ` ``TypeError: set() got an unexpected keyword argument 'bulk'```3 `TypeError: set() got an unexpected keyword argument 'bulk'` 4 4 5 5 The documentation however still states that the "bulk" argument exists, so I'm not sure whether the documentation or the code is wrong. … … 9 9 In `create_reverse_many_to_one_manager`: 10 10 11 ` ``def set(self, objs, *, bulk=True, clear=False):```11 `def set(self, objs, *, bulk=True, clear=False):` 12 12 13 13 In `create_forward_many_to_many_manager`: 14 14 15 ` ``def set(self, objs, *, clear=False)```15 `def set(self, objs, *, clear=False):`