Files @ 5f1f77948355
Branch filter:

Location: kallithea/rhodecode/lib/vcs/utils/compat.py

Mads Kiilerich
compare: reorder columns in changeset list - this feels more natural to me

- but we should probably also try to be more consistent.
"""
Various utilities to work with Python < 2.7.

Those utilities may be deleted once ``vcs`` stops support for older Python
versions.
"""
import sys


if sys.version_info >= (2, 7):
    unittest = __import__('unittest')
else:
    unittest = __import__('unittest2')