I have a pure-Python module that compiles with Cython into .so
, for performance.
The project currently uses Python 3.8 and everything works fine.
I've read CPython 3.11 comes with potentially great performance benefits, so I'm wondering the cost/benefit effort of upgrading.
Do any of the CPython 3.11 optimizations translate to Cython-compiled code? Which ones? How much?
What is the expected overall effect of Cython on 3.11 relative to 3.8 code?