(self)
| 1248 | # the code instead of iterating over fields. But that can be a project for |
| 1249 | # another day, if performance becomes an issue. |
| 1250 | def _dataclass_getstate(self): |
| 1251 | return [getattr(self, f.name) for f in fields(self)] |
| 1252 | |
| 1253 | |
| 1254 | def _dataclass_setstate(self, state): |
nothing calls this directly
no test coverage detected
searching dependent graphs…