ffi
Here are 434 public repositories matching this topic...
Environment
- Pythonnet version: 2.3.0
- Python version: 2.7
- Operating System: Windows 10
Details
I have a C# class library which I use in Python. I have a Point class (a code snippet):
public Point(double x, double y)
{
this.x = x;
this.y = y;
}
public override string ToString()
{
return $"Point({x}, {y})";
}
-
Updated
Sep 7, 2020 - Python
-
Updated
Nov 10, 2020 - C
-
Updated
Jul 12, 2020 - Rust
-
Updated
Oct 21, 2020 - PHP
-
Updated
Jun 10, 2020 - PHP
-
Updated
Oct 2, 2020 - Python
-
Updated
Nov 24, 2019 - Haskell
Currently, each time an Exception occurs on the Java side, it is caught in JNI.Unsafe.Internal, printed on stderr, and tranformed into a JVMException on the Haskell side, where it is thrown with throwIO.
It's problematic because this printing on stderr occurs even if the exception is caught afterwards, and may clutter stdout, particularly on test cases, where multiple exceptions may be ex
-
Updated
Nov 8, 2020 - Rust
-
Updated
May 18, 2020 - Lua
-
Updated
Jun 13, 2020 - Haskell
-
Updated
Oct 19, 2020 - Python
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."
Just thinking that for the guide it would be nice to add a table to the
#[pyproto]section listing all the dunder methods that can be implemented and the protocols they are a part of (e.g.__int__->PyNumberProtocoletc.)