Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename variables
  • Loading branch information
matthiasgoergens committed Sep 30, 2022
commit a77b849dee6816077d277483f2cb1135c7d56eb5
6 changes: 3 additions & 3 deletions Lib/test/test_ctypes/test_bitfields.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ class X(Structure):
def test_mixed_7(self):
class X(Structure):
_fields_ = [
("_", c_uint),
('A', c_uint, 20),
('B', c_ulonglong, 24)]
("A", c_uint),
('B', c_uint, 20),
('C', c_ulonglong, 24)]
self.assertEqual(16, sizeof(X))

def test_anon_bitfields(self):
Expand Down