10 lines
134 B
Python
Raw Normal View History

2023-04-19 21:18:17 +08:00
class TestProxy:
def __setattr__(self, name, value):
pass
2023-04-19 21:18:17 +08:00
test = TestProxy()
test.A = "FS8000PikaPython"
2023-04-19 21:18:17 +08:00
print('PASS')