mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Minimal "re" compatibility wrapper.  See "sre" for documentation."""
 | |
| 
 | |
| engine = "sre" # Some apps might use this undocumented variable
 | |
| 
 | |
| from sre import *
 | |
| from sre import __all__
 | 
