Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

I believe that significant part or even most of code is writing without using 
linters and type checkers. Python is too convenient for non-professional 
programmers. You do not need to declare all variables with their types to use 
Python and do not need to run a compiler/linker/checker after editing sources.

There was such mistake (using a module implicitly imported by star-import) even 
in the Python stdlib (fixed now).

This change would increase the quality of code if you do not use __all__ and do 
not have habits to write "import sys as _sys". It will not affect professional 
code. It is just a small step in the direction of been casual user friendly.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue38215>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to