Replies: 1 comment
-
|
I'd say that in Python, any member which does not start with an underscore can be considered public API. The reason why the docs don't mention it is simply that nobody added it to the list of members to be included in the generated pages. If you feel like changing that, PRs to clean up the docs (in small, digestible steps) are appreciated. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a simulated CAN node with an object dictionary. I need to execute some processing code whenever a certain OD entry is changed. I found the
add_write_callback()inLocalNodewhich works like a charm for this use case.However, this method is not documented which makes me wonder if this is public API that is safe to use. Are there any reasons why this is not documented? Are there any (better) alternatives?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions