Return a string value of this field from the passed obj. This is used by the serialization framework.
(self, obj)
| 1125 | ] |
| 1126 | |
| 1127 | def value_to_string(self, obj): |
| 1128 | """ |
| 1129 | Return a string value of this field from the passed obj. |
| 1130 | This is used by the serialization framework. |
| 1131 | """ |
| 1132 | return str(self.value_from_object(obj)) |
| 1133 | |
| 1134 | @property |
| 1135 | def flatchoices(self): |
nothing calls this directly
no test coverage detected