Changes between Initial Version and Version 1 of Ticket #36638, comment 2
- Timestamp:
- Oct 3, 2025, 11:14:17 AM (5 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36638, comment 2
initial v1 3 3 You don't have to do the `Values` wrapping, passing `default=[]` works just fine. 4 4 5 `Value` wrapping is only necessary when passing a `str` literal as they default to field references instead of literals like any other Python literal does (`'field'` is equivalent `F('field')`)5 `Value` wrapping is only necessary when passing a `str` literal as they default to field references (`'field'` is equivalent to `F('field')`) instead of value literals like any other Python literal does.