Skip to content

Commit c9ea0df

Browse files
committed
fix more
1 parent 61810c5 commit c9ea0df

File tree

7 files changed

+48
-48
lines changed

7 files changed

+48
-48
lines changed

pandas/io/excel/_base.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,14 @@
267267
Rows at the end to skip (0-indexed).
268268
{storage_options}
269269
270-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
270+
dtype_backend : {'numpy_nullable', 'pyarrow'}
271271
Back-end data type applied to the resultant :class:`DataFrame`
272-
(still experimental). Behaviour is as follows:
272+
(still experimental). If not specified, the default behavior
273+
is to not use nullable data types. If specified, the behavior
274+
is as follows:
273275
274-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
275-
(default).
276-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
277-
DataFrame.
276+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
277+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
278278
279279
.. versionadded:: 2.0
280280
@@ -1728,14 +1728,14 @@ def parse(
17281728
comment string and the end of the current line is ignored.
17291729
skipfooter : int, default 0
17301730
Rows at the end to skip (0-indexed).
1731-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
1731+
dtype_backend : {'numpy_nullable', 'pyarrow'}
17321732
Back-end data type applied to the resultant :class:`DataFrame`
1733-
(still experimental). Behaviour is as follows:
1733+
(still experimental). If not specified, the default behavior
1734+
is to not use nullable data types. If specified, the behavior
1735+
is as follows:
17341736
1735-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
1736-
(default).
1737-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
1738-
DataFrame.
1737+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
1738+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
17391739
17401740
.. versionadded:: 2.0
17411741
**kwds : dict, optional

pandas/io/feather_format.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ def read_feather(
9292
Whether to parallelize reading using multiple threads.
9393
{storage_options}
9494
95-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
95+
dtype_backend : {'numpy_nullable', 'pyarrow'}
9696
Back-end data type applied to the resultant :class:`DataFrame`
97-
(still experimental). Behaviour is as follows:
97+
(still experimental). If not specified, the default behavior
98+
is to not use nullable data types. If specified, the behavior
99+
is as follows:
98100
99-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
100-
(default).
101-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
102-
DataFrame.
101+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
102+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
103103
104104
.. versionadded:: 2.0
105105

pandas/io/html.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1131,14 +1131,14 @@ def read_html(
11311131
11321132
.. versionadded:: 1.5.0
11331133
1134-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
1134+
dtype_backend : {'numpy_nullable', 'pyarrow'}
11351135
Back-end data type applied to the resultant :class:`DataFrame`
1136-
(still experimental). Behaviour is as follows:
1136+
(still experimental). If not specified, the default behavior
1137+
is to not use nullable data types. If specified, the behavior
1138+
is as follows:
11371139
1138-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
1139-
(default).
1140-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
1141-
DataFrame.
1140+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
1141+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
11421142
11431143
.. versionadded:: 2.0
11441144

pandas/io/json/_json.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -649,14 +649,14 @@ def read_json(
649649
650650
{storage_options}
651651
652-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
652+
dtype_backend : {'numpy_nullable', 'pyarrow'}
653653
Back-end data type applied to the resultant :class:`DataFrame`
654-
(still experimental). Behaviour is as follows:
654+
(still experimental). If not specified, the default behavior
655+
is to not use nullable data types. If specified, the behavior
656+
is as follows:
655657
656-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
657-
(default).
658-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
659-
DataFrame.
658+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
659+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
660660
661661
.. versionadded:: 2.0
662662

pandas/io/parquet.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -542,14 +542,14 @@ def read_parquet(
542542
543543
.. versionadded:: 1.3.0
544544
545-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
545+
dtype_backend : {'numpy_nullable', 'pyarrow'}
546546
Back-end data type applied to the resultant :class:`DataFrame`
547-
(still experimental). Behaviour is as follows:
547+
(still experimental). If not specified, the default behavior
548+
is to not use nullable data types. If specified, the behavior
549+
is as follows:
548550
549-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
550-
(default).
551-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
552-
DataFrame.
551+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
552+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
553553
554554
.. versionadded:: 2.0
555555

pandas/io/parsers/readers.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -443,14 +443,14 @@ class _read_shared(TypedDict, Generic[HashableT], total=False):
443443
444444
{storage_options}
445445
446-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
446+
dtype_backend : {'numpy_nullable', 'pyarrow'}
447447
Back-end data type applied to the resultant :class:`DataFrame`
448-
(still experimental). Behaviour is as follows:
448+
(still experimental). If not specified, the default behavior
449+
is to not use nullable data types. If specified, the behavior
450+
is as follows:
449451
450-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
451-
(default).
452-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
453-
DataFrame.
452+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
453+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
454454
455455
.. versionadded:: 2.0
456456

pandas/io/xml.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -959,14 +959,14 @@ def read_xml(
959959
960960
{storage_options}
961961
962-
dtype_backend : {{'numpy_nullable', 'pyarrow'}}, default 'numpy_nullable'
962+
dtype_backend : {'numpy_nullable', 'pyarrow'}
963963
Back-end data type applied to the resultant :class:`DataFrame`
964-
(still experimental). Behaviour is as follows:
964+
(still experimental). If not specified, the default behavior
965+
is to not use nullable data types. If specified, the behavior
966+
is as follows:
965967
966-
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
967-
(default).
968-
* ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
969-
DataFrame.
968+
* ``"numpy_nullable"``: returns with nullable-dtype-backed
969+
* ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
970970
971971
.. versionadded:: 2.0
972972

0 commit comments

Comments
 (0)