Monitor Python class attributes (2)

Jan 27, 2019


Let's continue the discussion from yesterday. Let's try to use some macro to achieve this. Remember, still, we want to be able to monitor some attributes, possibly some dictionaries, in an object.

We will use the same test code as yesterday:

Have a look at the results:

This is correct; let's try more:

Results:

As can be seen, even if the dictionary contents have been updated correctly. The changes do not get picked up. Another failure! What should I do? I will provide the real solution tomorrow.