log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
hgrepos
>
Python
>
libs
>
ConfigMix
comparison mixconfig/compat.py @ 2:
9981a68040b6
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
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