mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 02:15:10 +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
 | 
