Skip to content

Commit c5111ae

Browse files
authored
gh-105751: Remove platform usage in test_ctypes (#105819)
The MACHINE variable is no longer used in test_structures.
1 parent b496ff3 commit c5111ae

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Lib/test/test_ctypes/test_structures.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import _ctypes_test
2-
import platform
32
import struct
43
import sys
54
import unittest
@@ -12,12 +11,6 @@
1211
from test import support
1312

1413

15-
# The following definition is meant to be used from time to time to assist
16-
# temporarily disabling tests on specific architectures while investigations
17-
# are in progress, to keep buildbots happy.
18-
MACHINE = platform.machine()
19-
20-
2114
class SubclassesTest(unittest.TestCase):
2215
def test_subclass(self):
2316
class X(Structure):

0 commit comments

Comments
 (0)