Skip to content

Commit e8eda6a

Browse files
committed
Create io folder for benchmarks
1 parent 4eed4c0 commit e8eda6a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

asv_bench/benchmarks/io/__init__.py

Whitespace-only changes.

asv_bench/benchmarks/io_csv.py renamed to asv_bench/benchmarks/io/csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pandas.compat import PY2
99
from pandas.compat import cStringIO as StringIO
1010

11-
from .pandas_vb_common import setup, BaseIO # noqa
11+
from ..pandas_vb_common import setup, BaseIO # noqa
1212

1313

1414
class ToCSV(BaseIO):

asv_bench/benchmarks/io_json.py renamed to asv_bench/benchmarks/io/json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import pandas.util.testing as tm
33
from pandas import DataFrame, date_range, timedelta_range, concat, read_json
44

5-
from .pandas_vb_common import setup, BaseIO # noqa
5+
from ..pandas_vb_common import setup, BaseIO # noqa
66

77

88
class ReadJSON(BaseIO):

0 commit comments

Comments
 (0)