(self)
| 6420 | |
| 6421 | @property |
| 6422 | def __wrapped__(self): |
| 6423 | if self.n <= 0: |
| 6424 | raise Exception("Unwrapped too many times") |
| 6425 | if self._next is None: |
| 6426 | self._next = NTimesUnwrappable(self.n - 1) |
| 6427 | return self._next |
| 6428 | |
| 6429 | class TestUnwrap(unittest.TestCase): |
| 6430 |
no test coverage detected