Activate a patch, returning any created mock.
(self)
| 1590 | |
| 1591 | |
| 1592 | def start(self): |
| 1593 | """Activate a patch, returning any created mock.""" |
| 1594 | result = self.__enter__() |
| 1595 | self._active_patches.append(self) |
| 1596 | return result |
| 1597 | |
| 1598 | |
| 1599 | def stop(self): |