2023-07-06 23:09:49 +08:00

10 lines
134 B
Python

class TestProxy:
def __setattr__(self, name, value):
pass
test = TestProxy()
test.A = "FS8000PikaPython"
print('PASS')