We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88bc136 commit 36611b8Copy full SHA for 36611b8
bisect/44923.py
@@ -0,0 +1,9 @@
1
+# BUG: using dtype='int64' argument of Series causes ValueError: values cannot
2
+# be losslessly cast to int64 for integer strings #44923
3
+
4
+import pandas as pd
5
6
+print(pd.__version__)
7
8
+result = pd.Series(["1", "2"], dtype="int64")
9
+print(result)
0 commit comments