(exc)
| 265 | |
| 266 | |
| 267 | def raise_with_context(exc): |
| 268 | exc_info = sys.exc_info() |
| 269 | if not exc_info: |
| 270 | raise exc |
| 271 | elif exc_info[1] is exc: |
| 272 | raise |
| 273 | raise exc from exc_info[1] |
no outgoing calls
no test coverage detected
searching dependent graphs…