comparison 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
comparison
equal deleted inserted replaced
1:e4c63b4f1568 2:9981a68040b6
1 # -*- coding: utf-8 -*-
2 r"""Some minimal compatibility between Python2 and Python3
3
4 """
5
6 import sys
7
8
9 __all__ = []
10
11
12 PY2 = sys.version_info[0] <= 2