Mercurial > hgrepos > Python > libs > ConfigMix
view mixconfig/__init__.py @ 4:f76d85ccc5b9
Switch to the "New BSD License"
| author | Franz Glasner <f.glasner@feldmann-mg.com> |
|---|---|
| date | Tue, 08 Mar 2016 16:46:27 +0100 |
| parents | 53ea2bc254e7 |
| children |
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__ = []
