Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/io/json/_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
)
from pandas.io.json._normalize import convert_to_line_delimits
from pandas.io.json._table_schema import build_table_schema, parse_table_schema
from pandas.io.parsers import validate_integer
from pandas.io.parsers.readers import validate_integer

loads = json.loads
dumps = json.dumps
Expand Down
3,997 changes: 0 additions & 3,997 deletions pandas/io/parsers.py

This file was deleted.

9 changes: 9 additions & 0 deletions pandas/io/parsers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from pandas.io.parsers.readers import (
TextFileReader,
TextParser,
read_csv,
read_fwf,
read_table,
)

__all__ = ["TextFileReader", "TextParser", "read_csv", "read_fwf", "read_table"]
Loading