(self, limit)
| 106 | """ |
| 107 | |
| 108 | def __init__(self, limit): |
| 109 | self.limit = util._get_stack_depth() + limit |
| 110 | self.old_limit = sys.getrecursionlimit() |
| 111 | |
| 112 | def __enter__(self): |
| 113 | sys.setrecursionlimit(self.limit) |
nothing calls this directly
no outgoing calls
no test coverage detected