(value)
| 67 | ): |
| 68 | |
| 69 | def m2m_value(value): |
| 70 | if natural := value.natural_key(): |
| 71 | return natural |
| 72 | else: |
| 73 | return self._value_from_field(value, value._meta.pk) |
| 74 | |
| 75 | def queryset_iterator(obj, field): |
| 76 | attr = getattr(obj, field.name) |
nothing calls this directly
no test coverage detected