We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b60bc69 commit b61511bCopy full SHA for b61511b
bisect/40073.py
@@ -0,0 +1,9 @@
1
+import pandas as pd
2
+
3
+print(pd.__version__)
4
+d1 = pd.DataFrame([("a",)], columns=["id"], dtype="string")
5
+d2 = pd.DataFrame([("b",)], columns=["id"], dtype="string")
6
+result = d1.merge(d2, on="id", how="right")
7
+dtype = result.dtypes["id"]
8
+print(dtype)
9
+assert isinstance(dtype, pd.StringDtype)
0 commit comments