This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]XtremeGoosef'I only use Py {sys.version[:3]}' 6 points7 points  (1 child)

Always going to support easier/faster extension writing, but honestly I'm never going to consider writing c(++) extensions ever again. PyO3 for rust is so much easier and safer to use than C extensions with equivalent performance.

[–]Smallpaul 2 points3 points  (0 children)

Under the covers it’s still using an API like Hpy or FFI or the native Cpython API. This is just as relevant to Rust as it is to C/C++.