I have this somewhat heretic question: Why do so many Python libraries have low code quality? Or do you think that this observation is absolutely not true? How does the situation compare to other languages? I am interested in your take on this.
Some reasons why I have the impression that code quality is lacking:
The docstrings are often completely missing or incomplete, even for the public API (e.g. in numpy). It is painful when a method takes
*argsand**kwargsbut does not document which values can be given.Bad Python coding practices, like adding new attributes outside of
__init__. Things like this make the code hard to read (or to maintain).Hardly any libraries follow the PEP8 coding conventions. Sometimes the conventions are not even consistent with the same file of a library (e.g. I saw this in matplotlib).
The overall design seems to be messy, but due to the lack of documentation I find this hard to judge. But it seems that not nearly enough refactoring is done.
Poor unittest coverage.
Don't get me wrong, I absolutely love Python and its ecosystem. And even though I struggled with these libraries they generally get the job done and I am grateful for that. But I also think that in the end tons of developer time are wasted because of these issues. Java code for example seems to be much better on average (based on my limited experience). Maybe that is because Python gives you so much freedom that it is very easy to write bad code.
Please don't just tell me that the libraries are open source and that I therefore should not complain. I contribute to an open source Python project myself, as much as I can. Open source programmers generally care about their code, because it is a subject of personal pride. But the perceived low code quality is a big hurdle for future contributors.
Edit: I really don't intend to express my "superiority" with this question. It is just that I try to learn and improve my programming. And I find that most of the things I learn make me more effective (like unittests). So I wonder why the experienced programmers writing these libraries do not follow the advice that is given to programming novices. Is it because they are so good that they can afford to cut corners?
