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
Fix a recursion problem with masked arrays in get_converter introduced in f8344a1
If a masked array with the first element masked is passed in to get_converter, the converter = self.get_converter(xravel()[0]) call causes a RuntimeError: maximum recursion depth exceeded. This patch will pass the first unmasked value, or skip the call if all elements are masked.
0 commit comments