8000
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 c9d1509 commit 2ad1a27Copy full SHA for 2ad1a27
lib/matplotlib/mlab.py
@@ -167,8 +167,6 @@
167
168
import six
169
from six.moves import map, xrange, zip
170
-if six.PY3:
171
- long = int
172
173
import copy
174
import csv
@@ -177,12 +175,17 @@
177
175
import warnings
178
176
179
import numpy as np
180
-ma = np.ma
181
from matplotlib import verbose
182
183
import matplotlib.cbook as cbook
184
from matplotlib import docstring
185
from matplotlib.path import Path
+import math
+
+ma = np.ma
186
187
+if six.PY3:
188
+ long = int
189
190
191
def logspace(xmin, xmax, N):
@@ -2065,8 +2068,6 @@ def movavg(x, n):
2065
2068
2066
2069
"""
2067
2070
-import math
-
2071
2072
# *****************************************************************************
2073
# Globals
0 commit comments