Hacker News new | ask | show | jobs
Disadvantages of Python (c2.com)
11 points by djangonian 5187 days ago
3 comments

This page has a lot of old/incomplete/incorrect information
But it comes to first page when you search python problems on Google.
Unfortunately, the first item is still valid. "Speed" is and continues to be a concern.

If python did multithreading then speed could be overlooked as processors grow more and more cores. The GIL prevents python programs from using the full potential of modern hardware, though.

Outdated