forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport PR pandas-dev#54586: REF: Refactor conversion of na value
- Loading branch information
1 parent
f7723bb
commit 3c36e73
Showing
3 changed files
with
25 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
# Needed for new arrow string dtype | ||
|
||
import pandas as pd | ||
|
||
object_pyarrow_numpy = ("object",) | ||
|
||
|
||
def _convert_na_value(ser, expected): | ||
if ser.dtype != object: | ||
# GH#18463 | ||
expected = expected.fillna(pd.NA) | ||
return expected |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters