Skip to content

Commit 2e38b2b

Browse files
code sample for pandas-dev#35665
1 parent eaf0f31 commit 2e38b2b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

bisect/35665.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import pandas as pd
2+
3+
print(pd.__version__)
4+
5+
foo = pd.DataFrame(
6+
{
7+
"some_string": ["612092d7-071f-467e832d-dd53e0f2b590-0006"],
8+
"time": [pd.NaT],
9+
}
10+
)
11+
12+
result = list(foo.iterrows())
13+
print(result)

0 commit comments

Comments
 (0)