hpyproject / hpy

HPy: a better API for Python
https://hpyproject.org
MIT License
1.02k stars 52 forks source link

HPyBytes_AsString should return const char pointer. #383

Closed fangerer closed 1 year ago

fangerer commented 1 year ago

Resolves #183 .

I've also implemented data pointer usage verification in debug mode. If the data pointer is written or used after the handle was closed, the process will crash because we protect the pages appropriately (just line we do for HPyUnicode_AsUTF8AndSize.

I also took the opportunity to implement the functionality on Windows as well.

mattip commented 1 year ago

I also took the opportunity to implement the functionality on Windows as well.

nice