We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e38b2b commit 26f8033Copy full SHA for 26f8033
bisect/35565.py
@@ -0,0 +1,11 @@
1
+import pandas as pd
2
+
3
+print(pd.__version__)
4
5
+x = pd.DataFrame([["foo", "bar"], [1, None]])
6
+y = x[1].copy()
7
8
+result = x.isin(y)
9
+print(result)
10
11
+assert result[1].all()
0 commit comments