Pyston (faster CPython 3.8) support #2699
Replies: 2 comments 6 replies
-
So the Pyston docs mention However I also see this mention on the readme:
Without a closer investigation this makes me think that it's possible some functionality may not work as intended in Pyston. If you wanted to use this with confidence in production I think some effort would be needed to verify all functionality. I could detail this if you're wanting to invest the time on it. In the end this might require additional support in |
Beta Was this translation helpful? Give feedback.
-
HI David @davidhewitt thanks for taking the time To be clear, I want to use Pyston FROM Rust and not the other way around. If you would tell me where to start to even attempt that, it would be great! All I need is to call a function in Python because I have the Python code for it but it's very difficult to rewrite in Rust, so I want to simply call it from Rust and I want it to be as fast as possible so I'd rather use Pyston which proved to be a lot faster than CPython for me. |
Beta Was this translation helpful? Give feedback.
-
Hi,
Pyston is a much faster version of Python that's very compatible. I have been able to run all libraries I need in Pyston without issues (using prebuilt binaries on Ubuntu 20.04). It would be hugely beneficial if I can use Pyston in Rust instead of the plain Python interpreter which is a lot slower and typically the use case for Rust is speed.
Is it possible to build PyO3 against Pyston? or just use it directly? Where to start?
Beta Was this translation helpful? Give feedback.
All reactions