(self, *, _ispytest: bool = False)
| 186 | """ |
| 187 | |
| 188 | def __init__(self, *, _ispytest: bool = False) -> None: |
| 189 | check_ispytest(_ispytest) |
| 190 | super().__init__(record=True) |
| 191 | self._entered = False |
| 192 | self._list: list[warnings.WarningMessage] = [] |
| 193 | |
| 194 | @property |
| 195 | def list(self) -> list[warnings.WarningMessage]: |
nothing calls this directly
no test coverage detected