Kaydet (Commit) f4166904 authored tarafından Armin Rigo's avatar Armin Rigo

Found the next crasher by thinking about this logic in PyPy.

üst af795e5e
"""
Infinite C recursion involving PyObject_GetAttr in slot_tp_new.
"""
class X(object):
class __metaclass__(type):
pass
__new__ = 5
X.__metaclass__.__new__ = property(X)
print X()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment