(self)
| 267 | ) |
| 268 | |
| 269 | def start(self) -> None: |
| 270 | self._assert_state("start", ("initialized",)) |
| 271 | setattr(sys, self.name, self.tmpfile) |
| 272 | self._state = "started" |
| 273 | |
| 274 | def snap(self): |
| 275 | self._assert_state("snap", ("started", "suspended")) |
nothing calls this directly
no test coverage detected