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

Class A

Lib/test/test_array.py:1118–1120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1116
1117 # pass through errors raised in __iter__
1118 class A:
1119 def __iter__(self):
1120 raise UnicodeError
1121 self.assertRaises(UnicodeError, array.array, self.typecode, A())
1122
1123 # pass through errors raised in next()

Calls

no outgoing calls