-
Notifications
You must be signed in to change notification settings - Fork 872
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1) Add exclude_modules param to gen_exports
2) Fix tests
- Loading branch information
Showing
38 changed files
with
369 additions
and
267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,45 @@ | ||
# -*- coding: utf-8 -*-# | ||
|
||
|
||
# the __all__ is generated | ||
__all__ = [] | ||
|
||
# __init__.py structure: | ||
# common code of the package | ||
# export interface in __all__ which contains __all__ of its sub modules | ||
|
||
# import all from submodule meta | ||
from .meta import * | ||
from .meta import __all__ as _meta_all | ||
|
||
__all__ += _meta_all | ||
|
||
# import all from submodule holder | ||
from .holder import * | ||
from .holder import __all__ as _holder_all | ||
|
||
__all__ += _holder_all | ||
|
||
# import all from submodule common | ||
from .common import * | ||
from .common import __all__ as _common_all | ||
# import all from submodule trading | ||
from .trading import * | ||
from .trading import __all__ as _trading_all | ||
|
||
__all__ += _common_all | ||
__all__ += _trading_all | ||
|
||
# import all from submodule finance | ||
from .finance import * | ||
from .finance import __all__ as _finance_all | ||
|
||
__all__ += _finance_all | ||
|
||
# import all from submodule common | ||
from .common import * | ||
from .common import __all__ as _common_all | ||
|
||
__all__ += _common_all | ||
|
||
# import all from submodule dividend_financing | ||
from .dividend_financing import * | ||
from .dividend_financing import __all__ as _dividend_financing_all | ||
|
||
__all__ += _dividend_financing_all | ||
|
||
# import all from submodule trading | ||
from .trading import * | ||
from .trading import __all__ as _trading_all | ||
# import all from submodule meta | ||
from .meta import * | ||
from .meta import __all__ as _meta_all | ||
|
||
__all__ += _trading_all | ||
__all__ += _meta_all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# -*- coding: utf-8 -*-# | ||
|
||
|
||
# the __all__ is generated | ||
__all__ = [] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
# -*- coding: utf-8 -*-# | ||
|
||
|
||
# the __all__ is generated | ||
__all__ = [] | ||
|
||
# __init__.py structure: | ||
# common code of the package | ||
# export interface in __all__ which contains __all__ of its sub modules | ||
|
||
# import all from submodule eastmoney_manager_trading_recorder | ||
from .eastmoney_manager_trading_recorder import * | ||
from .eastmoney_manager_trading_recorder import __all__ as _eastmoney_manager_trading_recorder_all | ||
|
||
__all__ += _eastmoney_manager_trading_recorder_all | ||
|
||
# import all from submodule eastmoney_holder_trading_recorder | ||
from .eastmoney_holder_trading_recorder import * | ||
from .eastmoney_holder_trading_recorder import __all__ as _eastmoney_holder_trading_recorder_all | ||
|
||
__all__ += _eastmoney_holder_trading_recorder_all | ||
|
||
# import all from submodule eastmoney_manager_trading_recorder | ||
from .eastmoney_manager_trading_recorder import * | ||
from .eastmoney_manager_trading_recorder import __all__ as _eastmoney_manager_trading_recorder_all | ||
|
||
__all__ += _eastmoney_manager_trading_recorder_all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.