Mercurial > hgrepos > Python > libs > ConfigMix
view configmix/__init__.py @ 7:7c095c6223b8
Module comment for ini.py
| author | Franz Glasner <hg@dom66.de> |
|---|---|
| date | Wed, 09 Mar 2016 00:52:32 +0100 |
| parents | dc058099a4cb |
| children | 7090c295c940 |
line wrap: on
line source
# -*- coding: utf-8 -*- r""" :Author: Franz Glasner :License: BSD License. See LICENSE for details. """ # # NOTE: ONLY STANDARDLIB-IMPORTS IN THIS MODULE. # ITS JUST FOR BOOTSTRAPPING WITH PYTHON2 and PYTHON3. # NO `future`, `six`, ... # from __future__ import division, print_function, absolute_import __version__ = "0.0.dev0" __all__ = []
