模块中的__all__的作用
__all__ = ["Test", "test1"] #__all__ 表示from import *,这个__all__ 等价与这个*
class Test():
def test(self):
print("=====Test=====")
def test1():
print("====test1=====")
def test2():
print("====test2=====")

__all__ = ["Test", "test1"] #__all__ 表示from import *,这个__all__ 等价与这个*
class Test():
def test(self):
print("=====Test=====")
def test1():
print("====test1=====")
def test2():
print("====test2=====")
