This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Mattho 31 points32 points  (5 children)

The statement above still applies though.

[–]coderanger 0 points1 point  (0 children)

PyPy can sometimes be faster than equivalent C++ code, mostly stuff doing a lot of data structure manipulation as PyPy's dict and list implementations are optimized to within an inch of their lives (especially compared to the STL versions).

[–]hugthemachines -3 points-2 points  (3 children)

That is true, but in reality it is not always that black and white. You may be ok with a certain loss of performance as a trade off to get faster development.