EcoWin Wiki
Status: Alpha
Brought to you by:
vossad01
# -*- coding: utf-8 -*-__init__.py files must be be contained in the directory corresponding to the package name__all__ variable must be defined in the __init__.py files in order for parts of the package to be accessible by "from ecowin import *" syntax__all__ variable is a list of strings corresponding to modules that should be imported when using the mentioned syntax__init__.py can also contain initialization code that will be executed upon importation of a package's module
Anonymous