Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e182c66

Browse files
bpo-46748: Fix ctypes test_frozentable() (GH-31600)
1 parent e02c475 commit e182c66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/ctypes/test/test_values.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class struct_frozen(Structure):
5454
_fields_ = [("name", c_char_p),
5555
("code", POINTER(c_ubyte)),
5656
("size", c_int),
57-
("is_package", c_bool),
57+
("is_package", c_int),
5858
("get_code", POINTER(c_ubyte)), # Function ptr
5959
]
6060
FrozenTable = POINTER(struct_frozen)

0 commit comments

Comments
 (0)