.save() called in multiple "creation" queryset functions
Both create()
and _create_object_from_params()
(which is obviously called by get_or_create()
), have raw calls to save()
. It would be nice if one of those two low level creation functions used the other so additional logic pinned to create()
by custom managers would also be available to get_or_create()
.
Change History
(5)
Easy pickings: |
unset
|
Triage Stage: |
Unreviewed → Accepted
|
Triage Stage: |
Accepted → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
Looking at the code briefly I think it might be possible.