summaryrefslogtreecommitdiff
path: root/tests/compat.py
blob: 90f1baa28b856f6e1b2ebad5facdf1d851431374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2013 Raphaƫl Barrois
# This code is distributed under the two-clause BSD License.

import sys

is_python2 = (sys.version_info[0] == 2)


try:  # pragma: no cover
    import unittest2 as unittest
except ImportError:  # pragma: no cover
    import unittest