summaryrefslogtreecommitdiff
path: root/python/testData/stubs/ImportInExcept.py
blob: 18033763c1443c94f2e20acb0248513dab334e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Django hackery to load the appropriate version of unittest

try:
    # check the system path first
    from unittest2 import *
except ImportError:
    if sys.version_info >= (2,7):
        # unittest2 features are native in Python 2.7
        from unittest import *
    else:
        # otherwise use our bundled version
        from datetime import tzinfo