MCPcopy Index your code
hub / github.com/python/cpython / cycle

Method cycle

Lib/test/test_exceptions.py:1160–1165  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1158 # See issue 25782. Cycle in context chain.
1159
1160 def cycle():
1161 try:
1162 raise ValueError(1)
1163 except ValueError as ex:
1164 ex.__context__ = ex
1165 raise TypeError(2)
1166
1167 try:
1168 cycle()

Callers 2

exportMethod · 0.80
runMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected