ffi
Here are 634 public repositories matching this topic...
Implement the PEP 587 configuration API as suggested in pythonnet/pythonnet#1517 (comment)
Details
See PEP link above.
🐛 Bug Report
Since CMake 3.20, the write_compiler_detection_header has been deprecated ( https://cmake.org/cmake/help/latest/module/WriteCompilerDetectionHeader.html ). My recommendation is to completely remove it. It is being used in a lot of parts of the CMake code and it generates a lot of unnecessary boilerplate.
All the <module>_features.h should be removed from the project, instea
-
Updated
Sep 7, 2020 - Python
-
Updated
Apr 29, 2022 - Rust
-
Updated
Oct 14, 2021 - PHP
-
Updated
Mar 21, 2022 - PHP
-
Updated
May 15, 2022 - Python
When using swift-bridge in a Swift package it is not possible to initialize a shared struct from Swift due to the default initializer being internal.
I believe the only solution for this is to generate an initializer so that we can explicitly mark it as public.
-
Updated
Mar 12, 2022 - Rust
-
Updated
Jun 3, 2022 - PHP
Improve this page
Add a description, image, and links to the ffi topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ffi topic, visit your repo's landing page and select "manage topics."


For some functions, I'd like to return a
LinkedList. However,IntoPyis only implemented forVec<T>, so I currently first convert to aVec, then allow pyo3 to convert theVecto aPyList. This seems a bit inefficient, if I'm properly understanding how the conversions happen under the hood. It seems like going directly fromLinkedListtoPyListwould be more efficient. I am willing