Changes between Initial Version and Version 1 of Ticket #36487, comment 9
- Timestamp:
- Aug 27, 2026, 3:18:32 AM (6 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36487, comment 9
initial v1 25 25 1. If not, would a note in the 5.2 documentation be acceptable? 26 26 27 On the second question: the `on_commit()` docs currently recommend the exact combination that breaks. They suggest `functools.partial` for binding arguments,27 On the second question: the 5.2 docs for `on_commit()` recommend the exact combination that breaks, in [https://docs.djangoproject.com/en/5.2/topics/db/transactions/#performing-actions-after-commit Performing actions after commit]. They suggest `functools.partial` for binding arguments, 28 28 29 29 Callbacks will not be passed any arguments, but you can bind them with `functools.partial()`