mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import warnings
 | 
						|
warnings.warn(f"module {__name__!r} is deprecated",
 | 
						|
              DeprecationWarning,
 | 
						|
              stacklevel=2)
 | 
						|
 | 
						|
from re import _compiler as _
 | 
						|
globals().update({k: v for k, v in vars(_).items() if k[:2] != '__'})
 |