-
-
Notifications
You must be signed in to change notification settings - Fork 11k
Class _arraymethod in ma.core is a descriptor, yet mutable. #5247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Nasty, looks like this will also introduce a race condition in threaded |
jjhelmus
added a commit
to jjhelmus/numpy
that referenced
this issue
Oct 30, 2015
Replace the _arraymethod class in ma.core with a function factory which returns class method wrappers around basic array methods. These methods are bound to the MaskedArray instance and are immutable. Previously _arraymethod was a class which would incorrectly operate on the MaskedArray object which last accessed the particular named function. closes numpy#5247
jaimefrio
pushed a commit
to jaimefrio/numpy
that referenced
this issue
Mar 22, 2016
Replace the _arraymethod class in ma.core with a function factory which returns class method wrappers around basic array methods. These methods are bound to the MaskedArray instance and are immutable. Previously _arraymethod was a class which would incorrectly operate on the MaskedArray object which last accessed the particular named function. closes numpy#5247
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This leads to "interesting" behaviour:
The text was updated successfully, but these errors were encountered: