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