mirror of
				https://github.com/docker/compose.git
				synced 2025-10-31 03:03:49 +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
 |