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 vstinner
Recipients Devyn Johnson, vstinner
Date 2016-01-22.13:43:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1453470204.34.0.0584353248124.issue26178@psf.upfronthosting.co.za>
In-reply-to
Content
Seting __all__ is usually need to exclude some symbols from "from module import *". In Python, it's common to write public or private (name prefixed by "_") helper functions which are excluded from __all__. In C extensions, you have to explicitly expose a function. Why would you expose a function but exclude it from __all__?
History
Date User Action Args
2016-01-22 13:43:24vstinnersetrecipients: + vstinner, Devyn Johnson
2016-01-22 13:43:24vstinnersetmessageid: <1453470204.34.0.0584353248124.issue26178@psf.upfronthosting.co.za>
2016-01-22 13:43:24vstinnerlinkissue26178 messages
2016-01-22 13:43:24vstinnercreate