Monday, December 19, 2022

[FIXED] What does __all__ mean in Python?

Issue

I see __all__ in __init__.py files. What does it do?


Solution

It's a list of public objects of that module, as interpreted by import *. It overrides the default of hiding everything that begins with an underscore.



Answered By - Jimmy
Answer Checked By - Katrina (PHPFixing Volunteer)

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.