13 lines
329 B
Python
13 lines
329 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
#
|
||
|
|
# This file is part of configparser_extended library
|
||
|
|
# released under the MIT license.
|
||
|
|
# See the LICENSE file for more information.
|
||
|
|
|
||
|
|
from configparser_extended.ecp import ExtendedConfigParser, \
|
||
|
|
SectionProxyExtended
|
||
|
|
|
||
|
|
|
||
|
|
__all__ = ['ExtendedConfigParser', 'SectionProxyExtended']
|