mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
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:
parent
f416690490
commit
f866fbb303
1 changed files with 10 additions and 0 deletions
10
Lib/test/crashers/new_logic.py
Normal file
10
Lib/test/crashers/new_logic.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue