Stefan Richthofer
Stefan Richthofer
Sorry, this is currently in conflict with my work on #22 in my local branch, causing additional errors. Sure, I could make a second clone for this, but anyway --...
Did you check that the conversion matches CPython behavior? The constructor you suggest now would fill the upper 8 bits with zeros. This should be the same like creating an...
Hey Malte, thanks for investigating this! And again big thank you for supplying the OSX-makefile. Unfortunately I currently don't have an OSX-environment available, so I cannot do much on this...
I prepared the JyNI-unstable repository to debug JyNI regarding _tkinter.c (statically linking it now). I inserted debugging output in _tkinter.c (JyNI-C/src/Modules/_tkinter.c) to log every call to Tk or Tcl-API and...
First of all, note that [`PyFile_WriteString`](https://github.com/Stewori/JyNI/blob/master/JyNI-C/src/Objects/fileobject.c#L2631) is already implemented and can serve as a pattern. I remember I once decided it would be best to keep PyFile-stuff on Jython-side and...
In http://www.kfu.com/%7Ensayer/Java/jni-filedesc.html we can see that `java.io.FileDescriptor` has a private `int`-field `fd`. I hope we can access that to implement `PyFile_AsFile`. A Jython `PyFile` uses `org.python.core.RawIO` as backend. Most likely...
Functions that don't access internals of the `PyFileObject` struct, e.g. `PyObject_AsFileDescriptor` can be commented in without a change. If they call other functions, we should focus on implementing these.
Is the issue reproducible? Can you isolate the Python code in matplotlib that provokes the crash? First thing to do is to create a minimal Python code sample (ideally independent...
Whilo, could you build a PR from what you achieved so far? That would make it easier for others (including myself) to reproduce the subsequent issue you describe. Please adjust...
Hey whilo. Just posting a polite reminder to file a PR for your work on PyFile. It would be a pity to loose this, even if it's just a starting...