Skip to content

Commit 389964d

Browse files
code sample for pandas-dev#47101
1 parent ecedb54 commit 389964d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

bisect/47101.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# BUG: type error in "mask_missing" method of core/missing.py #47101
2+
3+
import pandas as pd
4+
5+
print(pd.__version__)
6+
7+
# case 1
8+
df = pd.DataFrame({"d": [pd.NA]})
9+
print(df.replace("", pd.NA))

0 commit comments

Comments
 (0)