Replies: 2 comments 1 reply
-
I had the same problem but I use a custom rw property suggested in #236 |
Beta Was this translation helpful? Give feedback.
0 replies
-
For posterity, this feature was added in commit 11a9b3c |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to support nullable properties, so when assigning None from python code, property would pass nullptr as a class instance instead.
Usage could be following for example:
What I have tried:
Based on the documentation, it seems that this should be supported.
However, there's a compilation error that says:
It seems that the root cause is that the same
extra
annotations are applied to both getter and setter, while they have different number of arguments.Is this known limitation, can feature like this be supported in future ?
Beta Was this translation helpful? Give feedback.
All reactions