Calum Freeman
Calum Freeman
# tl;dr: I have no idea :smiley:! I'm posting this so that I can remember where I got to on monday, any comments would be helpful but don't spend too...
The `!type` vs `type` was a mistake in the github post, sorry. The actual code is `if(type)`, but it segfaulted, changing it to `!type` fixed some errors but not still...
And also: `clearNativeHandle` could be given a bad argument when it is called from C, that could be because the argument it is supposed to be passed has been GC'd...
> That feels like a bit too much of trial'n error >I suspect that solution would leak memory Yes, both of these would be terrible solutions, they were just to...
Sorry I haven't had much time to give to this recently, but I did try a few things: * `PyNativeRefHoldingStringMap`'s `__setitem__` does get called with `_randint_type` as the key, I...
Hmm, I'm not sure. I think I removed the JyNI warning since I had _PySequence_IterSearch "implemented" (ie commented in since the code worked with dictionaries once tp_as_sequence was implemented). That...
I've started working on finishing implementing the PyFile API. It's on a separate [branch/fork](https://github.com/CalumFreeman/JyNI/tree/Implementing-PyFile) and I hope to have decent tests for the API before merging it with master. But...
### Question: I am unsure as to what to do about the memory management functions in PyFile, I feel like there will be some details about JyNI GC that will...
I've added a basic debug build target, it just compiles with the -g flag which adds debug symbols to the file (I also added a tests target that just prints...
This is to do with [issue 30](https://github.com/Stewori/JyNI/issues/30)