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 not 100% sure if this is the correct address to make this request but the issue/request I have is as follows:
When subclassing numpy arrays to add attributes/properties on top of the numpy array, all of the properties get packed into the __internals__ special variable. While all values are gathered and correctly displayed, it is quite inconvenient to have them be bunched into the __internals__ variable.
I included the two example images to show the problem:
Where the attribute is located:
vs. where you probably want to see the attribute:
The text was updated successfully, but these errors were encountered:
Not sure if we can detect attributes that are internal or not correctly. The info attribute seems like it should be at the top level but that code is just showing all of the data in the __dict__ as part of the __internals__.
Hello everyone,
I'm not 100% sure if this is the correct address to make this request but the issue/request I have is as follows:
When subclassing numpy arrays to add attributes/properties on top of the numpy array, all of the properties get packed into the
__internals__
special variable. While all values are gathered and correctly displayed, it is quite inconvenient to have them be bunched into the__internals__
variable.I included the two example images to show the problem:
Where the attribute is located:
vs. where you probably want to see the attribute:
The text was updated successfully, but these errors were encountered: