This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients belopolsky, jiangping.li, rhettinger, serhiy.storchaka, xiang.zhang
Date 2019-07-13.04:53:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562993633.52.0.392787591813.issue28292@roundup.psfhosted.org>
In-reply-to
Content
There are two ways to indicate that a function is not public: either make its name underscored, or add __all__ and do not include the function name in it. The purpose of __all__ is to avoid mass renaming of internal functions whis is a code churn and reduces readability. If make all internal names underscored, __all__ would be not needed.
History
Date User Action Args
2019-07-13 04:53:53serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, belopolsky, xiang.zhang, jiangping.li
2019-07-13 04:53:53serhiy.storchakasetmessageid: <1562993633.52.0.392787591813.issue28292@roundup.psfhosted.org>
2019-07-13 04:53:53serhiy.storchakalinkissue28292 messages
2019-07-13 04:53:53serhiy.storchakacreate