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

Class E

Lib/test/test_set.py:1787–1795  ·  view source on GitHub ↗

Test propagation of exceptions

Source from the content-addressed store, hash-verified

1785 return self
1786
1787class E:
1788 'Test propagation of exceptions'
1789 def __init__(self, seqn):
1790 self.seqn = seqn
1791 self.i = 0
1792 def __iter__(self):
1793 return self
1794 def __next__(self):
1795 3 // 0
1796
1797class S:
1798 'Test immediate stop'

Callers 3

test_constructorMethod · 0.70
test_inline_methodsMethod · 0.70
test_inplace_methodsMethod · 0.70

Calls

no outgoing calls

Tested by 3

test_constructorMethod · 0.56
test_inline_methodsMethod · 0.56
test_inplace_methodsMethod · 0.56