mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			118 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			118 B
		
	
	
	
		
			Python
		
	
	
	
	
	
def func():
 | 
						|
    pass
 | 
						|
func.__module__ = None
 | 
						|
 | 
						|
class A:
 | 
						|
    def method(self):
 | 
						|
        pass
 | 
						|
    method.__module__ = None
 |