它是一个string元素组成的list变量,定义了当你使用 from <module> import * 导入某个模块的时候能导出的符号(这里代表变量,函数,类等)
from <module> import *
参考文章:
http://python-china.org/t/725
http://blog.csdn.net/orangleliu/article/details/49848413
__all__ 作用, 相当于导入*
原文:http://www.cnblogs.com/qingyuanjushi/p/5995152.html