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 1414from pandas .core .common import PandasError
1515from pandas .util .decorators import deprecate
1616
17-
1817def _check_google_client_version ():
1918 if compat .PY3 :
2019 raise NotImplementedError ("Google's libraries do not support Python 3 yet" )
Original file line number Diff line number Diff line change 1010from pandas import compat
1111
1212from pandas import NaT
13- from pandas .compat import u
13+ from pandas .compat import u , range
1414from pandas .core .frame import DataFrame
1515import pandas .io .gbq as gbq
1616import pandas .util .testing as tm
@@ -111,7 +111,7 @@ def make_mixed_dataframe_v2(test_size):
111111 flts = np .random .randn (1 , test_size )
112112 ints = np .random .randint (1 , 10 , size = (1 , test_size ))
113113 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 )]
115115 return DataFrame ({'bools' : bools [0 ],
116116 'flts' : flts [0 ],
117117 'ints' : ints [0 ],
You can’t perform that action at this time.
0 commit comments