blob: 1ae1ff05f63acc7eaa5b88b30e8f126a46409a60 (
plain)
1
2
3
4
5
6
7
8
9
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()
|