mirror of
https://github.com/powerline/powerline.git
synced 2025-04-08 19:25:04 +02:00
9 lines
257 B
Python
9 lines
257 B
Python
# vim:fileencoding=utf-8:noet
|
|
import sys
|
|
if sys.version_info < (2, 7):
|
|
from unittest2 import TestCase, main # NOQA
|
|
from unittest2.case import SkipTest # NOQA
|
|
else:
|
|
from unittest import TestCase, main # NOQA
|
|
from unittest.case import SkipTest # NOQA
|