1
0
mirror of https://gitee.com/Lyon1998/pikapython.git synced 2025-03-12 18:02:40 +08:00

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')