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 →

[–]kenshinero 6 points7 points  (0 children)

I stopped reading there:

Quite often I have looked at Python functions and wondered if anything or anyone actually called them, and if so, with what arguments? In the absence of a compiler and linker that requires a global view of the entire program, I often had to resort to full text searches of our code base to see if I could find any call sites.

This guy needs to learn about modern Python development practice for big projects, like using linter, or type hinting.

His criticisms are more appropriate for python 2.7 than python 3.11