I wish the community would just switch entirely to pypy. Being able to just slightly performance sensitive code in python is a huge win.
> I wish the community would just switch entirely to pypy. What purpose would that serve? > Being able to just slightly performance sensitive code in python is a huge win. I think you slightly this phrase, but aside from that pypy does not work for everybody and everything (e.g. at best it's no slower for sphinx, it really doesn't like the way docutils works). It's not like pypy's a magic wand.
The first stable release of PyPy3
11–20 of 92 posts
Re: The first stable release of PyPy3
#12I wish the community would just switch entirely to pypy. Being able to just slightly performance sensitive code in python is a huge win.
Re: The first stable release of PyPy3
#13Re: The first stable release of PyPy3
#14I wish the community would just switch entirely to pypy. Being able to just slightly performance sensitive code in python is a huge win.
Re: The first stable release of PyPy3
#15Re: The first stable release of PyPy3
#16I wish the community would just switch entirely to pypy. Being able to just slightly performance sensitive code in python is a huge win.
It makes sense to use pypy if you're writing pure python code. The second you need a C extension, you're pretty much out of luck. This kills a lot of the appeal for people in the scientific/analytics side of things, who make heavy use of legacy C and Fortran routines.
Re: The first stable release of PyPy3
#17I don't know or use Python but why an implementation that is trying to be "superior" still has the GIL?
Ruby also has a GIL.
Re: The first stable release of PyPy3
#18Minor note: the openbsd support (at least for 2.x) is amd64 only. Building for i386 at some point requires running a bootstrap process that doesn't fit in memory.
Seriously, it takes more than 4gigs to build PyPy? Is that also necessary for other platforms besides OpenBSD?
Re: The first stable release of PyPy3
#19I don't know or use Python but why an implementation that is trying to be "superior" still has the GIL?
Re: The first stable release of PyPy3
#20I wish the community would just switch entirely to pypy. Being able to just slightly performance sensitive code in python is a huge win.
It makes sense to use pypy if you're writing pure python code. The second you need a C extension, you're pretty much out of luck. This kills a lot of the appeal for people in the scientific/analytics side of things, who make heavy use of legacy C and Fortran routines.
In theory, shouldn't CFFI be the foundation of the solution to that problem?