mirror of
				https://github.com/docker/compose.git
				synced 2025-11-04 05:34:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import absolute_import
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import sys
 | 
						|
 | 
						|
if sys.version_info >= (2, 7):
 | 
						|
    import unittest  # NOQA
 | 
						|
else:
 | 
						|
    import unittest2 as unittest  # NOQA
 | 
						|
 | 
						|
try:
 | 
						|
    from unittest import mock
 | 
						|
except ImportError:
 | 
						|
    import mock  # NOQA
 |