diff options
author | Diego Russo <diego.russo@arm.com> | 2024-01-05 15:45:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-05 15:45:26 (GMT) |
commit | b95cebf2b68792afd75da6da16a38a7765045a30 (patch) | |
tree | 45733d0d894b2b5fcf7e294e71a9e8371743f5da /Misc | |
parent | 1dc25ae0da182bb6070dae66ee7e7cbb1b285ed4 (diff) | |
download | cpython-b95cebf2b68792afd75da6da16a38a7765045a30.zip cpython-b95cebf2b68792afd75da6da16a38a7765045a30.tar.gz cpython-b95cebf2b68792afd75da6da16a38a7765045a30.tar.bz2 |
[3.12] gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959) (#113170)
Fix the same issue of PR #112604 on PPC64LE platform
Refactor tests to make easier to add more platfroms if needed.
(cherry picked from commit 6644ca45cde9ca1b80513a90dacccfeea2d98620)
Change-Id: I31730a3ebe558570ce1d7a3b26db8392f18d1770
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-12-11-14-12-46.gh-issue-110190.e0iEUa.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-12-11-14-12-46.gh-issue-110190.e0iEUa.rst b/Misc/NEWS.d/next/Library/2023-12-11-14-12-46.gh-issue-110190.e0iEUa.rst new file mode 100644 index 0000000..3bfed1e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-12-11-14-12-46.gh-issue-110190.e0iEUa.rst @@ -0,0 +1 @@ +Fix ctypes structs with array on PPC64LE platform by setting ``MAX_STRUCT_SIZE`` to 64 in stgdict. Patch by Diego Russo. |