py.lib.aw_config
2026-06-23
Parent:ee8fb73df434
19:0fe90487ecdf tip Browse Files
.. 0.202606.4 . Исправление неточности с списке экспортов модуля
setup.py src/aw_config/__init__.py
1.1 --- a/setup.py Tue Jun 23 12:37:22 2026 +0300 1.2 +++ b/setup.py Tue Jun 23 13:50:57 2026 +0300 1.3 @@ -3,7 +3,7 @@ 1.4 1.5 setup( 1.6 name='aw_config', 1.7 - version='0.202606.3', 1.8 + version='0.202606.4', 1.9 packages=['aw_config'], 1.10 package_dir={'aw_config': 'src/aw_config'}, 1.11 description='Модуль поддержки процесса конфигурирования приложения'
2.1 --- a/src/aw_config/__init__.py Tue Jun 23 12:37:22 2026 +0300 2.2 +++ b/src/aw_config/__init__.py Tue Jun 23 13:50:57 2026 +0300 2.3 @@ -3,7 +3,7 @@ 2.4 from .type_helpers import ANY, DICT, LIST 2.5 from .file import ConfigFile, ConfigSectionNotFound, ConfigFileError 2.6 from .app_tools import get_app_root 2.7 -from .app_config_manager import (get_config, init_configs, replace_config, add_config, 2.8 +from .app_config_manager import (get_config, init_configs, replace_config, del_config, add_config, 2.9 AppConfNotFound, AppConfManagerError) 2.10 2.11 2.12 @@ -12,5 +12,6 @@ 2.13 'ANY', 'DICT', 'LIST', 2.14 'ConfigFile', 'ConfigSectionNotFound', 'ConfigFileError', 'EnvConfigError', 2.15 'get_app_root', 2.16 - 'get_config', 'init_configs', 'replace_config', 'add_config', 'AppConfNotFound', 'AppConfManagerError' 2.17 + 'get_config', 'init_configs', 'replace_config', 'del_config', 'add_config', 2.18 + 'AppConfNotFound', 'AppConfManagerError' 2.19 ]