Skip to content

Commit 7b8e68b

Browse files
committed
Merge branch 'main' of https://github.com/wooseogchoi/pandas into issue_#59009
fixed errors from PR.
2 parents 697c6fe + 25c2604 commit 7b8e68b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pandas/io/parsers/readers.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -558,11 +558,11 @@ class _read_shared(TypedDict, Generic[HashableT], total=False):
558558
The csv in the pyarrow must be used if the values in the file have
559559
new line characters.
560560
561-
>>> from pyarrow import csv
562-
>>> parse_options = csv.ParseOptions(newlines_in_values=True)
563-
>>> table = csv.read_csv("example.csv", parse_options=parse_options)
564-
>>> df = table.to_pandas()
565-
>>> df.head()
561+
>>> from pyarrow import csv # doctest: +SKIP
562+
>>> parse_options = csv.ParseOptions(newlines_in_values=True) # doctest: +SKIP
563+
>>> table = csv.read_csv("example.csv", parse_options=parse_options) # doctest: +SKIP
564+
>>> df = table.to_pandas() # doctest: +SKIP
565+
>>> df.head() # doctest: +SKIP
566566
text idx
567567
0 ab\ncd 0
568568
1 ab\ncd 1

0 commit comments

Comments
 (0)