8000 gh-61103: Support float and long double complex types in ctypes module by skirpichev · Pull Request #121248 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-61103: Support float and long double complex types in ctypes module #121248

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jul 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Misc/NEWS.d/next/Library/2024-06-23-07-23-08.gh-issue-61103.ca…
…_U_l.rst
  • Loading branch information
skirpichev authored Jul 2, 2024
commit 0bb9ba3f6cc2ddc21475463b94d97bf8c350fb53
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Support :c:expr:`float complex`, :c:expr:`double complex` and
:c:expr:`long double complex` C types in :mod:`ctypes` via :mod:`ctypes`
:class:`~ctypes.c_float_complex`, :class:`~ctypes.c_double_complex`
:c:expr:`long double complex` C types in :mod:`ctypes` as
:class:`~ctypes.c_float_complex`, :class:`~ctypes.c_double_complex` and
:class:`~ctypes.c_longdouble_complex` if compiler has C11 complex arithmetic.
Patch by Sergey B Kirpichev.
Loading
0