mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
# http://python.org/sf/1267884
 | 
						|
 | 
						|
import types
 | 
						|
 | 
						|
class C:
 | 
						|
    __str__ = types.InstanceType.__str__
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    str(C())   # segfault: infinite recursion in C
 |