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 434dbab commit 3844826Copy full SHA for 3844826
Lib/test/test_struct.py
@@ -800,6 +800,10 @@ def test_c_complex_round_trip(self):
800
round_trip = struct.unpack(f, struct.pack(f, z))[0]
801
self.assertComplexesAreIdentical(z, round_trip)
802
803
+ @unittest.skipIf(
804
+ support.is_android or support.is_apple_mobile,
805
+ "Subinterpreters are not supported on Android and iOS"
806
+ )
807
def test_endian_table_init_subinterpreters(self):
808
# Verify that the _struct extension module can be initialized
809
# concurrently in subinterpreters (gh-140260).
0 commit comments