We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I am inspired by your code and currently developing a cffi-based pysam alternative which works with Pypy. While testing your code I found that
ffi.new('kstring_t *', {'m': 0, 'l': 0, 's': ffi.NULL})
causes memory leak, so I replaced it with Pythonic way. You can find the change here:
HiDiHlabs@cd35d6f
Maybe there would be better way to do this? Thank you so much for your contribution!
Best regards, Jeongbin Park
The text was updated successfully, but these errors were encountered:
Thanks for reporting. I didn't know about the memory leak. I think the better solution is to just free kstr.s
Sorry, something went wrong.
No branches or pull requests
Hello,
I am inspired by your code and currently developing a cffi-based pysam alternative which works with Pypy. While testing your code I found that
ffi.new('kstring_t *', {'m': 0, 'l': 0, 's': ffi.NULL})
causes memory leak, so I replaced it with Pythonic way. You can find the change here:
HiDiHlabs@cd35d6f
Maybe there would be better way to do this? Thank you so much for your contribution!
Best regards,
Jeongbin Park
The text was updated successfully, but these errors were encountered: