diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-01-31 00:08:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 00:08:26 (GMT) |
commit | d326d5247822619cbea3c715024e29b74d335db9 (patch) | |
tree | 7c4d2c499c90fc85edd27842d36043905a481193 /Misc | |
parent | f1f0f2e3d740c96edd233f4f1a1aa76cdc81bb53 (diff) | |
download | cpython-d326d5247822619cbea3c715024e29b74d335db9.zip cpython-d326d5247822619cbea3c715024e29b74d335db9.tar.gz cpython-d326d5247822619cbea3c715024e29b74d335db9.tar.bz2 |
gh-110190: Fix ctypes structs with array on Windows ARM64 (GH-114753)
(cherry picked from commit a06b606462740058b5d52fefdcdcd679d4f40260)
Co-authored-by: Diego Russo <diego.russo@arm.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-01-30-15-34-08.gh-issue-110190.Z5PQQX.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-01-30-15-34-08.gh-issue-110190.Z5PQQX.rst b/Misc/NEWS.d/next/Library/2024-01-30-15-34-08.gh-issue-110190.Z5PQQX.rst new file mode 100644 index 0000000..af77e40 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-01-30-15-34-08.gh-issue-110190.Z5PQQX.rst @@ -0,0 +1 @@ +Fix ctypes structs with array on Windows ARM64 platform by setting ``MAX_STRUCT_SIZE`` to 32 in stgdict. Patch by Diego Russo |