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