mirror of
https://github.com/python/cpython.git
synced 2025-11-10 18:42:04 +00:00
11 lines
170 B
Python
11 lines
170 B
Python
|
|
|
||
|
|
# http://python.org/sf/1202533
|
||
|
|
|
||
|
|
class A(str):
|
||
|
|
__get__ = getattr
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
a = A('a')
|
||
|
|
A.a = a
|
||
|
|
a.a # segfault: infinite recursion in C
|