diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-11-22 18:57:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 18:57:45 (GMT) |
commit | 5252ad2b646ee7bbcccee86a42cf48bbb321a6e2 (patch) | |
tree | fe51dac6365c2d311559111f5577a13a3ac1a0e4 /Misc/NEWS.d | |
parent | fa6cc9e6df6c517c917cb8381c14d37096c06962 (diff) | |
download | cpython-5252ad2b646ee7bbcccee86a42cf48bbb321a6e2.zip cpython-5252ad2b646ee7bbcccee86a42cf48bbb321a6e2.tar.gz cpython-5252ad2b646ee7bbcccee86a42cf48bbb321a6e2.tar.bz2 |
GH-92892: Add section about variadic functions to ctypes documentation (GH-99529)
On some platforms, and in particular macOS/arm64, the calling
convention for variadic arguments is different from the regular
calling convention. Add a section to the documentation to document
this.
(cherry picked from commit bc3a11d21ddef28047b18c0f6a5068fa9fb16da2)
Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2022-11-16-12-52-23.gh-issue-92892.TS-P0j.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2022-11-16-12-52-23.gh-issue-92892.TS-P0j.rst b/Misc/NEWS.d/next/Documentation/2022-11-16-12-52-23.gh-issue-92892.TS-P0j.rst new file mode 100644 index 0000000..54e421d --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-11-16-12-52-23.gh-issue-92892.TS-P0j.rst @@ -0,0 +1 @@ +Document that calling variadic functions with ctypes requires special care on macOS/arm64 (and possibly other platforms). |