()
| 1159 | # See issue 25782. Cycle in context chain. |
| 1160 | |
| 1161 | def cycle(): |
| 1162 | try: |
| 1163 | raise ValueError(1) |
| 1164 | except ValueError as ex: |
| 1165 | ex.__context__ = ex |
| 1166 | raise TypeError(2) |
| 1167 | |
| 1168 | try: |
| 1169 | cycle() |
no outgoing calls
no test coverage detected