Live data from Hacker News

PyPy: Faster Python with Minimal Effort

realpython.com

1–10 of 13 posts

Re: PyPy: Faster Python with Minimal Effort

#5
post #2

Easier pypy with minimal effort https://github.com/fijal/jitpy

This is amazing, and obvious in retrospect. Gradual compilation can be adopted, well, gradually, without breaking existing code. 100% upside, 0% downside. PyPy team should consider making this delivery mode the #1 priority. Even worth reconsidering the object management impedance as well, and go for 100% compatibility with CPython object model. I suspect this would have a small runtime cost, but a would be a huge boon for smooth risk-free adoption.

Re: PyPy: Faster Python with Minimal Effort

#6
It’s probably a testament to the type of software I typically develop with Python, but I’ve never felt the urge to use PyPy. Even if it’s faster with zero effort, it’s still different.

Any time performance has been a concern that application was in Java or Go (for me).

Re: PyPy: Faster Python with Minimal Effort

#7
post #2

Easier pypy with minimal effort https://github.com/fijal/jitpy

This is amazing, and obvious in retrospect. Gradual compilation can be adopted, well, gradually, without breaking existing code. 100% upside, 0% downside. PyPy team should consider making this delivery mode the #1 priority. Even worth reconsidering the object management impedance as well, and go for 100% compatibility with CPython object model. I suspect this would have a small runtime cost, but a would be a huge boo…

Back in Python2 days, you just slam "import psyco" and your code magically goes faster. The pysco authors went ahead and invented pypy.

Ambitious project, but less popularity.

Post reply on HN