MCPcopy Index your code
hub / github.com/RustPython/RustPython / cycle

Method cycle

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

Source from the content-addressed store, hash-verified

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()

Callers 3

runMethod · 0.80
_mulMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected