ref: 986efb04152e2c8a04d28bc6e50a2235ab0e1af0
dir: /sys/lib/python/test/crashers/infinite_rec_1.py/
# http://python.org/sf/1202533
import new, operator
class A:
pass
A.__mul__ = new.instancemethod(operator.mul, None, A)
if __name__ == '__main__':
A()*2 # segfault: infinite recursion in C