diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mixconfig/compat.py	Tue Mar 08 15:40:37 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