mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
9 lines
152 B
Python
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
|