Activate a patch, returning any created mock.
(self)
| 1663 | |
| 1664 | |
| 1665 | def start(self): |
| 1666 | """Activate a patch, returning any created mock.""" |
| 1667 | result = self.__enter__() |
| 1668 | self._active_patches.append(self) |
| 1669 | return result |
| 1670 | |
| 1671 | |
| 1672 | def stop(self): |