You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm considering porting fysom to Micropython. The most significant challenge I see is that weak references are not supported. From the fysom code, I see that they are only used in the _weak_callback function.
What would be the downside of not using weak references? Are those objects then never released, or is the use of weak references just a way to release the objects sooner or more efficiently?
The text was updated successfully, but these errors were encountered:
I'm considering porting fysom to Micropython. The most significant challenge I see is that weak references are not supported. From the fysom code, I see that they are only used in the _weak_callback function.
What would be the downside of not using weak references? Are those objects then never released, or is the use of weak references just a way to release the objects sooner or more efficiently?
The text was updated successfully, but these errors were encountered: