mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
bpo-46748: Fix ctypes test_frozentable() (GH-31600)
This commit is contained in:
parent
e02c47528b
commit
e182c660b6
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ class PythonValuesTestCase(unittest.TestCase):
|
||||||
_fields_ = [("name", c_char_p),
|
_fields_ = [("name", c_char_p),
|
||||||
("code", POINTER(c_ubyte)),
|
("code", POINTER(c_ubyte)),
|
||||||
("size", c_int),
|
("size", c_int),
|
||||||
("is_package", c_bool),
|
("is_package", c_int),
|
||||||
("get_code", POINTER(c_ubyte)), # Function ptr
|
("get_code", POINTER(c_ubyte)), # Function ptr
|
||||||
]
|
]
|
||||||
FrozenTable = POINTER(struct_frozen)
|
FrozenTable = POINTER(struct_frozen)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue