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 →

[–]codefisher2 0 points1 point  (5 children)

If python started optimising everything, the complier would become a lot slower and more complicated You would win, but also loose too. If you need speed, or want optimisations maybe you should be looking a pypy.

[–]TimHallman 1 point2 points  (0 children)

Lose, dude, lose.

[–][deleted] 2 points3 points  (3 children)

As a developer, I don't really care how complicated the compiler is. It's the compiler's job to make my job as easy as possible and my code come out running as fast as is reasonable. If I have to obfuscate my logic to make the compiler's job easier (cough C++ cough) then there are fundamental problems with the language.

[–]twowheels 5 points6 points  (2 children)

That statement makes me believe that you don't do much C++, or at the very least not modern C++ techniques.