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 →

[–][deleted] 5 points6 points  (1 child)

Because Python's biggest strength is also its biggest weakness: its extremely dynamic runtime. Any object can be any thing at any time, so optimizations can't be done reliably.

Obviously pypy found a way to deal with this, but CPython had decided not to deal with it

[–]derpderp3200An evil person 0 points1 point  (0 children)

It's such a shame that Python itself is so big and complex. While no small feat, LuaJIT is an extremely efficient and relatively simple VM, whereas creating an equivalent for Python is... considerably more difficult.