File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 14
14
from pandas .core .common import PandasError
15
15
from pandas .util .decorators import deprecate
16
16
17
-
18
17
def _check_google_client_version ():
19
18
if compat .PY3 :
20
19
raise NotImplementedError ("Google's libraries do not support Python 3 yet" )
Original file line number Diff line number Diff line change 10
10
from pandas import compat
11
11
12
12
from pandas import NaT
13
- from pandas .compat import u
13
+ from pandas .compat import u , range
14
14
from pandas .core .frame import DataFrame
15
15
import pandas .io .gbq as gbq
16
16
import pandas .util .testing as tm
@@ -111,7 +111,7 @@ def make_mixed_dataframe_v2(test_size):
111
111
flts = np .random .randn (1 , test_size )
112
112
ints = np .random .randint (1 , 10 , size = (1 , test_size ))
113
113
strs = np .random .randint (1 , 10 , size = (1 , test_size )).astype (str )
114
- times = [datetime .now (pytz .timezone ('US/Arizona' )) for t in xrange (test_size )]
114
+ times = [datetime .now (pytz .timezone ('US/Arizona' )) for t in range (test_size )]
115
115
return DataFrame ({'bools' : bools [0 ],
116
116
'flts' : flts [0 ],
117
117
'ints' : ints [0 ],
You can’t perform that action at this time.
0 commit comments