mirror of
https://github.com/docker/compose.git
synced 2026-06-25 10:38:23 +00:00
7 lines
102 B
Python
7 lines
102 B
Python
import sys
|
|
|
|
if sys.version_info >= (2,7):
|
|
import unittest
|
|
else:
|
|
import unittest2 as unittest
|
|
|