diff configmix/compat.py @ 5:dc058099a4cb

Renamed the project from "MixConfig" to "ConfigMix"
author Franz Glasner <hg@dom66.de>
date Tue, 08 Mar 2016 20:11:17 +0100
parents mixconfig/compat.py@9981a68040b6
children 0b1292e920af
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configmix/compat.py	Tue Mar 08 20:11:17 2016 +0100
@@ -0,0 +1,12 @@
+# -*- coding: utf-8 -*-
+r"""Some minimal compatibility between Python2 and Python3
+
+"""
+
+import sys
+
+
+__all__ = []
+
+
+PY2 = sys.version_info[0] <= 2