view mixconfig/compat.py @ 2:9981a68040b6

An INI-style configuration file parser
author Franz Glasner <f.glasner@feldmann-mg.com>
date Tue, 08 Mar 2016 15:40:37 +0100
parents
children
line wrap: on
line source

# -*- coding: utf-8 -*-
r"""Some minimal compatibility between Python2 and Python3

"""

import sys


__all__ = []


PY2 = sys.version_info[0] <= 2