mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 02:15:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			183 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			183 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Tests harness for distutils.versionpredicate.
 | |
| 
 | |
| """
 | |
| 
 | |
| import distutils.versionpredicate
 | |
| import doctest
 | |
| 
 | |
| def test_suite():
 | |
|     return doctest.DocTestSuite(distutils.versionpredicate)
 | 
