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

Class N

Lib/test/test_set.py:1779–1785  ·  view source on GitHub ↗

Iterator missing __next__()

Source from the content-addressed store, hash-verified

1777 return v
1778
1779class N:
1780 'Iterator missing __next__()'
1781 def __init__(self, seqn):
1782 self.seqn = seqn
1783 self.i = 0
1784 def __iter__(self):
1785 return self
1786
1787class E:
1788 'Test propagation of exceptions'

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