We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91deb25 commit dadfb24Copy full SHA for dadfb24
bisect/39410.py
@@ -0,0 +1,10 @@
1
+import pandas as pd
2
+
3
+print(pd.__version__)
4
5
+d = {"x": [1, 2]}
6
7
+df1 = pd.DataFrame(data=d, dtype=pd.UInt32Dtype())
8
+df2 = pd.DataFrame(data=d, dtype=pd.UInt32Dtype())
9
10
+pd.testing.assert_frame_equal(df1, df2, check_exact=True)
0 commit comments