| 1749 | exc_info = None, None, None |
| 1750 | |
| 1751 | class custom_patch(_patch): |
| 1752 | def __exit__(self, etype=None, val=None, tb=None): |
| 1753 | _patch.__exit__(self, etype, val, tb) |
| 1754 | holder.exc_info = etype, val, tb |
| 1755 | stop = __exit__ |
| 1756 | |
| 1757 | def with_custom_patch(target): |
| 1758 | getter, attribute = _get_target(target) |
no outgoing calls
searching dependent graphs…