diff --git a/asv_bench/benchmarks/indexing.py b/asv_bench/benchmarks/indexing.py index e83efdd0fa2a0a..8290731fd7eeaa 100644 --- a/asv_bench/benchmarks/indexing.py +++ b/asv_bench/benchmarks/indexing.py @@ -2,10 +2,9 @@ import numpy as np import pandas.util.testing as tm -from pandas import (Series, DataFrame, MultiIndex, Int64Index, Float64Index, - IntervalIndex, CategoricalIndex, +from pandas import (Series, DataFrame, Panel, MultiIndex, Int64Index, + Float64Index, IntervalIndex, CategoricalIndex, IndexSlice, concat, date_range) -from .pandas_vb_common import Panel class NumericSeriesIndexing(object): diff --git a/asv_bench/benchmarks/join_merge.py b/asv_bench/benchmarks/join_merge.py index 57811dec8cd299..3524a5adb54500 100644 --- a/asv_bench/benchmarks/join_merge.py +++ b/asv_bench/benchmarks/join_merge.py @@ -11,8 +11,6 @@ except ImportError: from pandas import ordered_merge as merge_ordered -from .pandas_vb_common import Panel - class Append(object): diff --git a/asv_bench/benchmarks/panel_ctor.py b/asv_bench/benchmarks/panel_ctor.py index b87583ef925f35..c2e5bfa175feba 100644 --- a/asv_bench/benchmarks/panel_ctor.py +++ b/asv_bench/benchmarks/panel_ctor.py @@ -3,8 +3,6 @@ from pandas import DataFrame, Panel, DatetimeIndex, date_range -from .pandas_vb_common import Panel - class DifferentIndexes(object): goal_time = 0.2 diff --git a/asv_bench/benchmarks/panel_methods.py b/asv_bench/benchmarks/panel_methods.py index e35455f36ed98d..542af44a78ffe7 100644 --- a/asv_bench/benchmarks/panel_methods.py +++ b/asv_bench/benchmarks/panel_methods.py @@ -3,8 +3,6 @@ import numpy as np from pandas import Panel -from .pandas_vb_common import Panel - class PanelMethods(object):