Changes between Version 1 and Version 2 of Ticket #36194
- Timestamp:
- Feb 16, 2025, 2:42:03 PM (6 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36194 – Description
v1 v2 2 2 i'm working on an async version of `ModelForm` on a third party package 3 3 a problem that occurs is the lack of async support in mant to many fields 4 in particular, `_save_m2m` [https://github.com/django/django/blob/main/django/forms/models.py#L536] calls `save_form_data` [https://github.com/django/django/blob/main/django/db/models/fields/related.py#L2010], but there is no async equivalent to this m athod4 in particular, `_save_m2m` [https://github.com/django/django/blob/main/django/forms/models.py#L536] calls `save_form_data` [https://github.com/django/django/blob/main/django/db/models/fields/related.py#L2010], but there is no async equivalent to this method 5 5 even tho `save_form_data` is basically calling `ManyRelatedManager.set` [https://github.com/django/django/blob/main/django/db/models/fields/related_descriptors.py#L1275] which has an async equivalent 6 6