Put method-wrappers into trashcan. Fixes #927248.

This commit is contained in:
Martin v. Löwis 2006-07-03 13:47:40 +00:00
parent ede77f5373
commit d5cfa5491a
3 changed files with 14 additions and 1 deletions

View file

@ -3966,6 +3966,13 @@ def weakref_segfault():
o.whatever = Provoker(o)
del o
def wrapper_segfault():
# SF 927248: deeply nested wrappers could cause stack overflow
f = lambda:None
for i in xrange(1000000):
f = f.__call__
f = None
# Fix SF #762455, segfault when sys.stdout is changed in getattr
def filefault():
if verbose:
@ -4121,6 +4128,7 @@ def notimplemented():
def test_main():
weakref_segfault() # Must be first, somehow
wrapper_segfault()
do_this_first()
class_docstrings()
lists()