We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed8361 commit d784203Copy full SHA for d784203
1 file changed
Lib/test/test_ctypes/test_arrays.py
@@ -183,10 +183,8 @@ def test_ctypes_array_class_assignment_same_size_ints(self):
183
def test_ctypes_array_class_assignment_structs(self):
184
class S1(Structure):
185
_fields_ = [("x", c_int)]
186
- class S2(Structure):
187
- _fields_ = [("x", c_int)]
188
A = S1 * 2
189
- B = S2 * 2
+ B = S1 * 2
190
a = A()
191
a.__class__ = B
192
0 commit comments