mirror of
https://github.com/python/cpython.git
synced 2025-11-06 16:41:59 +00:00
10 lines
152 B
Python
10 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
|