summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-01-31 00:08:26 (GMT)
committerGitHub <noreply@github.com>2024-01-31 00:08:26 (GMT)
commitd326d5247822619cbea3c715024e29b74d335db9 (patch)
tree7c4d2c499c90fc85edd27842d36043905a481193 /Misc
parentf1f0f2e3d740c96edd233f4f1a1aa76cdc81bb53 (diff)
downloadcpython-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.rst1
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