(self)
| 211 | return tuple(self._defects) |
| 212 | |
| 213 | def __reduce__(self): |
| 214 | return ( |
| 215 | _reconstruct_header, |
| 216 | ( |
| 217 | self.__class__.__name__, |
| 218 | self.__class__.__bases__, |
| 219 | str(self), |
| 220 | ), |
| 221 | self.__getstate__()) |
| 222 | |
| 223 | @classmethod |
| 224 | def _reconstruct(cls, value): |
nothing calls this directly
no test coverage detected