mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +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)
 |