Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6713af0 commit b557ba8Copy full SHA for b557ba8
lib/mpl_toolkits/gtktools.py
@@ -158,7 +158,7 @@ def __call__(self, column):
158
val = model.get_value(thisiter, self.i)
159
try: val = float(val.strip().rstrip('%'))
160
except ValueError: pass
161
- if npy.isnan(val): val = npy.inf # force nan to sort uniquely
+ if mlab.safe_isnan(val): val = npy.inf # force nan to sort uniquely
162
dsu.append((val, rownum))
163
dsu.sort()
164
if not self.num%2: dsu.reverse()
0 commit comments