PetterS / quickjs

Thin Python wrapper of https://bellard.org/quickjs/
https://github.com/bellard/QuickJS
MIT License
177 stars 19 forks source link

memory management in object_call #88

Closed qwenger closed 2 years ago

qwenger commented 2 years ago

object_call uses malloc/free. Use CPython- (PyMem_...) or QuickJS- (js_...) based functions instead?