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
Add a IContextAwareDefaultFactory for one of the fields. The factory should try to access the parent
A view will show the information from the parent
Accessing the property directly in code will fail. The object is acquisition wrapped, but Python doesn't know about this magic and __getattr__ gets an unwrapped object of self. All __parent__ pointers are gone.
I wouldn't know how to fix it, unfortunately. And it should be added somewhere as a warning.
The text was updated successfully, but these errors were encountered:
This causes surprising and bad behavior:
IContextAwareDefaultFactory
for one of the fields. The factory should try to access the parent__getattr__
gets an unwrapped object of self. All__parent__
pointers are gone.I wouldn't know how to fix it, unfortunately. And it should be added somewhere as a warning.
The text was updated successfully, but these errors were encountered: