mirror of
				https://github.com/docker/compose.git
				synced 2025-11-02 20:54:43 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
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
 |