Does not terminate: consume all memory without responding to Ctrl-C.

I am not too sure why, but you can surely find out by gdb'ing a bit...
This commit is contained in:
Armin Rigo 2009-09-03 19:42:03 +00:00
parent f416690490
commit f866fbb303

View file

@ -0,0 +1,10 @@
"""
Does not terminate: consume all memory without responding to Ctrl-C.
I am not too sure why, but you can surely find out by gdb'ing a bit...
"""
class X(object):
pass
X.__new__ = X
X()