cpython/Lib/test/crashers/infinite_rec_3.py
Armin Rigo b4b5a7601b collected my segfaulting Python examples from the SF trackers
(is the purpose of the crashers directory to scare people? :-)
2006-01-14 10:58:30 +00:00

9 lines
152 B
Python

# http://python.org/sf/1202533
class A(object):
pass
A.__call__ = A()
if __name__ == '__main__':
A()() # segfault: infinite recursion in C