←back to thread

122 points phsilva | 2 comments | | HN request time: 0.438s | source
Show context
VWWHFSfQ ◴[] No.43111138[source]
Will Python ever get fast? Or even _reasonably_ fast?

The answer is no, it will not. Instead they'll just keep adding more and more syntax. And more and more ways to do the same old things. And they'll say that if you want "fast" then write a native module that we can import and use.

So then what's the point? Is Python really just a glue language like all the rest?

replies(4): >>43111179 #>>43111277 #>>43111282 #>>43111343 #
1. tcoff91 ◴[] No.43111343[source]
I think if you want python but fast then Mojo is your only hope.

EDIT: yes and there’s pypy as well as pointed out below. Basically you gotta use an alternative python implementation of some kind.

replies(1): >>43111480 #
2. pansa2 ◴[] No.43111480[source]
There’s always PyPy - it’s much faster than CPython and, unlike Mojo, is ready to use today.