view mixconfig/compat.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 9981a68040b6
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